craban/server/api/api.go
Miguel de la Cruz f76aa74179 Stuff
2021-09-12 21:57:59 +02:00

13 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
}