2014-03-18 20:00:41 +04:00
|
|
|
package datasource
|
|
|
|
|
|
|
|
type Datasource interface {
|
2014-06-27 02:17:53 +04:00
|
|
|
IsAvailable() bool
|
|
|
|
AvailabilityChanges() bool
|
2014-06-18 22:36:06 +04:00
|
|
|
ConfigRoot() string
|
2014-06-18 22:58:18 +04:00
|
|
|
FetchMetadata() ([]byte, error)
|
|
|
|
FetchUserdata() ([]byte, error)
|
2014-05-15 09:20:40 +04:00
|
|
|
Type() string
|
2014-03-18 20:00:41 +04:00
|
|
|
}
|