9 lines
115 B
Go
9 lines
115 B
Go
|
package adventure
|
||
|
|
||
|
type AdventureStore interface {
|
||
|
Create() (int, error)
|
||
|
}
|
||
|
|
||
|
type DefaultAdventureStore struct {
|
||
|
}
|