himitsu/config/config.go
2024-04-28 21:35:37 +02:00

14 lines
157 B
Go

package config
import "himitsu/totp"
const Version = "v0.0.1"
var Config = []totp.TOTP{
{
Label: "Test",
Secret: "Test",
Account: "Test",
},
}