all repos — honk @ cd28f4fedc193dbfc0e87b9918904fb510309f4e

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