forked from x/icebergs
15 lines
247 B
Go
15 lines
247 B
Go
package aaa
|
|
|
|
import (
|
|
ice "shylinux.com/x/icebergs"
|
|
)
|
|
|
|
const (
|
|
RSA = "rsa"
|
|
)
|
|
const AAA = "aaa"
|
|
|
|
var Index = &ice.Context{Name: AAA, Help: "认证模块"}
|
|
|
|
func init() { ice.Index.Register(Index, nil, ROLE, SESS, TOTP, USER, OFFER, EMAIL, RSA) }
|