Bluemage/go/api/api.go

19 lines
197 B
Go
Raw Normal View History

2024-08-05 23:06:32 +07:00
package api
import (
"sync"
"github.com/stephenafamo/bob"
)
type API struct {
mu sync.Mutex
db bob.Executor
}
func (api *API) lockf(f func()) {
api.mu.Lock()
defer api.mu.Unlock()
f()
}