18 lines
242 B
Go
18 lines
242 B
Go
//go:build ignore
|
|
// +build ignore
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"git.dustin.coffee/hobokenchicken/dumpsterChat/internal/auth"
|
|
)
|
|
|
|
func main() {
|
|
hash, err := auth.HashPassword("password")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
fmt.Print(hash)
|
|
}
|