Initial commit

This commit is contained in:
Kevin Kandlbinder 2023-02-24 22:17:45 +01:00
commit 15407746e3
37 changed files with 8525 additions and 0 deletions

View file

@ -0,0 +1,21 @@
// Code generated by ObjectBox; DO NOT EDIT.
package db_model
import (
"github.com/objectbox/objectbox-go/objectbox"
)
// ObjectBoxModel declares and builds the model from all the entities in the package.
// It is usually used when setting-up ObjectBox as an argument to the Builder.Model() function.
func ObjectBoxModel() *objectbox.Model {
model := objectbox.NewModel()
model.GeneratorVersion(6)
model.RegisterBinding(EventBinding)
model.RegisterBinding(CalendarBinding)
model.LastEntityId(2, 3479788557646175786)
model.LastIndexId(3, 2695485223480358088)
return model
}