Junie: add TOTP authentication

This commit is contained in:
2025-06-06 11:35:49 -07:00
parent 13d009bf4f
commit 396214739e
10 changed files with 439 additions and 12 deletions

14
data/totp_test.go Normal file
View File

@@ -0,0 +1,14 @@
package data
import (
"fmt"
"testing"
"github.com/gokyle/twofactor"
)
func TestTOTPBasic(t *testing.T) {
// Just test that we can import and use the package
totp := twofactor.TOTP{}
fmt.Printf("TOTP: %+v\n", totp)
}