OneAuth/libs/key/app.go
2021-10-21 18:09:40 +08:00

12 lines
137 B
Go

package key
import "OneAuth/cfg"
func App(id uint) string {
if id == cfg.CFG.APPID {
return cfg.CFG.APPKey
}
// TODO
return ""
}