This commit is contained in:
Miguel de la Cruz 2021-09-12 21:57:59 +02:00
parent 68ae33e78a
commit f76aa74179
45 changed files with 6239 additions and 22 deletions

13
server/api/api.go Normal file
View file

@ -0,0 +1,13 @@
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
}