Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2013 Canonical Ltd. | |
2 // Licensed under the AGPLv3, see LICENCE file for details. | |
3 | |
4 package storage | |
thumper
2013/09/16 03:02:08
why is the package "storage" when the directory is
axw1
2013/09/16 04:56:48
Yep, that was a mistake.
| |
5 | |
6 // LocalStorageConfig is an interface that, if implemented, may be used | |
7 // to configure a machine agent for use with the localstorage worker in | |
8 // this package. | |
9 type LocalStorageConfig interface { | |
10 StorageDir() string | |
11 StorageAddr() string | |
12 SharedStorageDir() string | |
13 SharedStorageAddr() string | |
14 } | |
OLD | NEW |