Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // DefaultTempDir creates temp dir. DefaultTempDir = createTempDir() // DefaultMaxSize for data size. DefaultMaxSize int64 = 64 * 1024 * 1024 )
Functions ¶
func ExtractArchive ¶
ExtractArchive extracts by archive.
Types ¶
type Consul ¶
type Consul struct { Host string Port int Password string // contains filtered or unexported fields }
Consul struct.
type KVS ¶
type KVS interface { Read(key string) ([]byte, error) Write(key string, data []byte) error Delete(key string) error List() ([]string, error) GetDir() string }
KVS interface.
Click to show internal directories.
Click to hide internal directories.