12 lines
137 B
Go
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 ""
|
|
}
|