14 lines
235 B
Go
14 lines
235 B
Go
package fns
|
|
|
|
import (
|
|
"github.com/google/wire"
|
|
)
|
|
|
|
var ProviderSet = wire.NewSet(
|
|
NewMigrationNodeVersion,
|
|
NewMigrationCreateBotAuth,
|
|
NewMigrationFixGroupIds,
|
|
NewMigrationUpdateNodeStatusUnreleased,
|
|
NewMigrationCreateFirstNavs,
|
|
)
|