mirror of
https://codeberg.org/Codeberg/avatars.git
synced 2023-08-10 21:12:50 +03:00
17 lines
215 B
Go
17 lines
215 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"codeberg.org/Codeberg/avatars"
|
|
)
|
|
|
|
func main() {
|
|
if len(os.Args) < 2 {
|
|
fmt.Println("please specify a seed string")
|
|
return
|
|
}
|
|
fmt.Println(avatars.MakeAvatar(os.Args[1]))
|
|
}
|