9 lines
195 B
Go
9 lines
195 B
Go
// Package auth provides implements the basic login/signup functionality typical of modern websites as well as integrated TOTP.
|
|
package auth
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
fmt.Println("vim-go")
|
|
}
|