mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
8efc3854ab
refactor: language mappings implementation
12 lines
171 B
Go
12 lines
171 B
Go
package common
|
|
|
|
import (
|
|
"github.com/muety/wakapi/config"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type migrationFunc struct {
|
|
f func(db *gorm.DB, cfg *config.Config) error
|
|
name string
|
|
}
|