13 lines
246 B
Go
13 lines
246 B
Go
package installation
|
|
|
|
import (
|
|
plugin "simrs-vx/internal/use-case/simgos-sync-plugin/installation"
|
|
)
|
|
|
|
// example of middleware
|
|
func init() {
|
|
createPostMw = append(createPostMw,
|
|
createMw{Name: "create-installation", Func: plugin.Create},
|
|
)
|
|
}
|