9 lines
152 B
Go
9 lines
152 B
Go
package datasource
|
|
|
|
type Datasource interface {
|
|
ConfigRoot() string
|
|
FetchMetadata() ([]byte, error)
|
|
FetchUserdata() ([]byte, error)
|
|
Type() string
|
|
}
|