Stuff
This commit is contained in:
parent
68ae33e78a
commit
f76aa74179
45 changed files with 6239 additions and 22 deletions
13
server/api/api.go
Normal file
13
server/api/api.go
Normal 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
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue