18 lines
468 B
Go
18 lines
468 B
Go
// Package system contains the built-in system module contribution to the
|
|
// application catalog.
|
|
package system
|
|
|
|
import (
|
|
datasystem "kra/internal/data/system"
|
|
"kra/pkg/module"
|
|
)
|
|
|
|
// Definition describes the built-in system contribution to the application
|
|
// catalog. Other business modules can expose the same shape independently.
|
|
func Definition() module.Definition {
|
|
return module.Definition{
|
|
Name: "system",
|
|
Migrations: datasystem.Migrations(),
|
|
}
|
|
}
|