proxy/pkg/module/module.go

12 lines
206 B
Go
Raw Normal View History

2023-01-25 14:03:37 +03:00
// 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...)
}