11 lines
185 B
Go
11 lines
185 B
Go
package initialize
|
|
|
|
import (
|
|
_ "byg-backend/source/example"
|
|
_ "byg-backend/source/system"
|
|
)
|
|
|
|
func init() {
|
|
// do nothing,only import source package so that inits can be registered
|
|
}
|