13 lines
203 B
Go
13 lines
203 B
Go
package security
|
|
|
|
import (
|
|
"github.com/cuigh/auxo/app/ioc"
|
|
)
|
|
|
|
const PkgName = "security"
|
|
|
|
func init() {
|
|
ioc.Put(NewIdentifier, ioc.Name("identifier"))
|
|
ioc.Put(NewAuthorizer, ioc.Name("authorizer"))
|
|
}
|