mirror of
https://github.com/gravitl/netmaker.git
synced 2025-10-08 10:11:08 +08:00

* feat(go): add db package; * feat(go): add jobs table; * feat(go): add schema migration facade; * refactor(go): use custom key type to avoid collisions;
9 lines
139 B
Go
9 lines
139 B
Go
package schema
|
|
|
|
// ListModels lists all the models in this schema.
|
|
func ListModels() []interface{} {
|
|
return []interface{}{
|
|
&Job{},
|
|
}
|
|
}
|