Add note interface
This commit is contained in:
parent
a4ab7f0294
commit
a7dab0fe43
1 changed files with 1 additions and 0 deletions
|
@ -49,6 +49,7 @@ func main() {
|
||||||
g.ApplyInterface(func(models.INotification) {}, models.Notification{})
|
g.ApplyInterface(func(models.INotification) {}, models.Notification{})
|
||||||
g.ApplyInterface(func(models.IUser) {}, models.User{})
|
g.ApplyInterface(func(models.IUser) {}, models.User{})
|
||||||
g.ApplyInterface(func(models.IAccessToken) {}, models.AccessToken{})
|
g.ApplyInterface(func(models.IAccessToken) {}, models.AccessToken{})
|
||||||
|
g.ApplyInterface(func(models.INote) {}, models.Note{})
|
||||||
|
|
||||||
log.Info().Msg("Extra features applied, starting generation")
|
log.Info().Msg("Extra features applied, starting generation")
|
||||||
g.Execute()
|
g.Execute()
|
||||||
|
|
Loading…
Reference in a new issue