Run gofmt on files that need it
This commit is contained in:
parent
e7245536f3
commit
230c736583
5 changed files with 12 additions and 13 deletions
|
@ -60,6 +60,7 @@ func AssetNames() []string {
|
||||||
var _bindata = map[string]func() ([]byte, error){
|
var _bindata = map[string]func() ([]byte, error){
|
||||||
"schema.sql": schema_sql,
|
"schema.sql": schema_sql,
|
||||||
}
|
}
|
||||||
|
|
||||||
// AssetDir returns the file names below a certain
|
// AssetDir returns the file names below a certain
|
||||||
// directory embedded in the file by go-bindata.
|
// directory embedded in the file by go-bindata.
|
||||||
// For example if you run go-bindata on data/... and data contains the
|
// 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)
|
Func func() ([]byte, error)
|
||||||
Children map[string]*_bintree_t
|
Children map[string]*_bintree_t
|
||||||
}
|
}
|
||||||
|
|
||||||
var _bintree = &_bintree_t{nil, 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{}},
|
||||||
}},
|
|
||||||
}}
|
}}
|
||||||
|
|
1
db/tx.go
1
db/tx.go
|
@ -23,4 +23,3 @@ func RunTransactionWithOptions(ctx context.Context, db *sql.DB, txOpts *sql.TxOp
|
||||||
}
|
}
|
||||||
return tx.Commit()
|
return tx.Commit()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -7,4 +7,3 @@ type ClientStateStore interface {
|
||||||
Generate(ctx context.Context) (string, error)
|
Generate(ctx context.Context) (string, error)
|
||||||
Validate(ctx context.Context, state string) error
|
Validate(ctx context.Context, state string) error
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue