14 lines
198 B
Go
14 lines
198 B
Go
|
package api
|
||
|
|
||
|
import (
|
||
|
"git.ctrlz.es/mgdelacroix/craban/services/store"
|
||
|
)
|
||
|
|
||
|
type API struct {
|
||
|
store *store.Store
|
||
|
}
|
||
|
|
||
|
func NewAPI(store *store.Store) (*API, error) {
|
||
|
return &API{store: store}, nil
|
||
|
}
|