proxy/pkg/module/module.go
2023-01-25 14:03:37 +03:00

12 lines
206 B
Go

// Copyright 2022 Listware
package module
import (
"git.fg-tech.ru/listware/go-core/pkg/module"
)
func New(namespace string, opts ...module.Opt) module.Module {
return module.New(namespace, opts...)
}