Run goimports as part of array gen script

This commit is contained in:
Jack Christensen 2017-03-20 08:00:43 -05:00
parent bec9bd261b
commit db6c5daa70

View File

@ -14,3 +14,4 @@ erb pgtype_array_type=VarcharArray pgtype_element_type=Varchar go_array_types=[]
erb pgtype_array_type=ByteaArray pgtype_element_type=Bytea go_array_types=[][]byte element_type_name=bytea text_null=NULL binary_format=true typed_array.go.erb > bytea_array.go
erb pgtype_array_type=AclitemArray pgtype_element_type=Aclitem go_array_types=[]string element_type_name=aclitem text_null=NULL binary_format=false typed_array.go.erb > aclitem_array.go
erb pgtype_array_type=HstoreArray pgtype_element_type=Hstore go_array_types=[]map[string]string element_type_name=hstore text_null=NULL binary_format=true typed_array.go.erb > hstore_array.go
goimports -w *_array.go