himitsu/config/config.go

14 lines
157 B
Go
Raw Normal View History

2024-04-28 21:35:37 +02:00
package config
import "himitsu/totp"
const Version = "v0.0.1"
var Config = []totp.TOTP{
{
Label: "Test",
Secret: "Test",
Account: "Test",
},
}