(appID string, storage AppStorage)
| 33 | } |
| 34 | |
| 35 | func NewAppStore(appID string, storage AppStorage) *Store { |
| 36 | return &Store{appID: appID, storage: storage} |
| 37 | } |
| 38 | |
| 39 | func NewStoreAt(path string) *Store { |
| 40 | return &Store{path: path} |
no outgoing calls