update
parent
7e2e1f0c19
commit
10874ba9fc
|
@ -21,16 +21,15 @@ type Attribute struct {
|
|||
|
||||
var l zerolog.Logger
|
||||
|
||||
func Init() error {
|
||||
func Init() {
|
||||
l = log.With().Str("mod", "attribute").Logger()
|
||||
|
||||
l.Debug().Str("service", "attribute.Service").
|
||||
Msg("Migrating database for attribute.Service ...")
|
||||
err := store.Migrate(&Attribute{})
|
||||
if err != nil {
|
||||
return err
|
||||
panic(err)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func Add(Key, Description, Default string) error {
|
||||
|
|
Loading…
Reference in New Issue