-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor the REST client. Add some documentation for the basic types (#…
…12)
- Loading branch information
Showing
4 changed files
with
19 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
package grafana | ||
|
||
// ClientConfig is the configuration for a supported Grafana client | ||
type ClientConfig struct { | ||
Host string | ||
Key string | ||
} | ||
|
||
// Client contains the supported operations over a Grafana instance | ||
type Client interface { | ||
GetAllDatasources() ([]*DataSource, error) | ||
} | ||
|
||
// NewClientFn is a convenient type offered for instantiating new clients | ||
type NewClientFn = func(ClientConfig) (Client, error) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters