begin boilerplate for golang modules

This commit is contained in:
talksik
2026-01-10 14:53:31 -08:00
parent c4c17a10fe
commit e38e6a9d4b
11 changed files with 120 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
package auth
type Service interface {
VerifyCode(email string, code string) error
}
+1
View File
@@ -0,0 +1 @@
package llink