Skip to content
/ query Public

Go package to return the desired type from various queries.

License

Notifications You must be signed in to change notification settings

gotmc/query

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

query

Go package to parse the results from a query.

GoDoc Go Report Card License Badge

Overview

Package query provides convenience functions for parsing the results from a Query.

type Querier interface {
	Query(cmd string) (string, error)
}

Contributing

Contributions are welcome! To contribute please:

  1. Fork the repository
  2. Create a feature branch
  3. Code
  4. Submit a pull request

Testing

Prior to submitting a pull request, please run:

$ make check
$ make lint

To update and view the test coverage report:

$ make cover

License

query is released under the MIT license. Please see the LICENSE.txt file for more information.