Run gofmt on files that need it

This commit is contained in:
Matt Baer 2021-06-09 14:22:13 -04:00
parent e7245536f3
commit 230c736583
5 changed files with 12 additions and 13 deletions

View File

@ -60,6 +60,7 @@ func AssetNames() []string {
var _bindata = map[string]func() ([]byte, error){
"schema.sql": schema_sql,
}
// AssetDir returns the file names below a certain
// directory embedded in the file by go-bindata.
// For example if you run go-bindata on data/... and data contains the
@ -99,7 +100,7 @@ type _bintree_t struct {
Func func() ([]byte, error)
Children map[string]*_bintree_t
}
var _bintree = &_bintree_t{nil, map[string]*_bintree_t{
"schema.sql": &_bintree_t{schema_sql, map[string]*_bintree_t{
}},
"schema.sql": &_bintree_t{schema_sql, map[string]*_bintree_t{}},
}}

View File

@ -23,4 +23,3 @@ func RunTransactionWithOptions(ctx context.Context, db *sql.DB, txOpts *sql.TxOp
}
return tx.Commit()
}

View File

@ -7,4 +7,3 @@ type ClientStateStore interface {
Generate(ctx context.Context) (string, error)
Validate(ctx context.Context, state string) error
}