localManager is responsible for managing the local user database
| 24 | |
| 25 | // localManager is responsible for managing the local user database |
| 26 | type localManager struct { |
| 27 | db *bolt.DB |
| 28 | world common.WorldState |
| 29 | } |
| 30 | |
| 31 | func MakeLocalManager(dbPath string, worldState common.WorldState) (*localManager, error) { |
| 32 | db, err := bolt.Open(dbPath, 0600, nil) |
nothing calls this directly
no outgoing calls
no test coverage detected