mirror of
https://github.com/cuigh/swirl
synced 2024-12-28 14:51:57 +00:00
13 lines
233 B
Go
13 lines
233 B
Go
package security
|
|
|
|
import (
|
|
"github.com/cuigh/auxo/app/container"
|
|
)
|
|
|
|
const PkgName = "security"
|
|
|
|
func init() {
|
|
container.Put(NewIdentifier, container.Name("identifier"))
|
|
container.Put(NewAuthorizer, container.Name("authorizer"))
|
|
}
|