feat(frontend): start edit page

This commit is contained in:
Sam 2022-05-26 16:11:22 +02:00
parent 2ee1087eec
commit 8b31519952
15 changed files with 556 additions and 44 deletions

11
scripts/genid/main.go Normal file
View file

@ -0,0 +1,11 @@
package main
import (
"fmt"
"github.com/rs/xid"
)
func main() {
fmt.Println(xid.New())
}