all repos — honk @ 88f85b4463bd1f9762dbc8c01a84fd115715bfaf

my fork of honk

genschemago.sh (view raw)

 1
 2
 3
 4
 5
 6
echo "package main" > schema.go
echo "var sqlSchema = \`" >> schema.go
cat schema.sql >> schema.go
echo "\`" >> schema.go
go fmt schema.go