Skip to content

Commit

Permalink
BreakingChange: using go standard for package names
Browse files Browse the repository at this point in the history
  • Loading branch information
mrz1836 committed Apr 8, 2023
1 parent 6120419 commit b515ef6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions custom_types/custom_types.go
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Package customTypes encapsulates our custom database field types
package customTypes
// Package customtypes encapsulates our custom database field types
package customtypes
2 changes: 1 addition & 1 deletion custom_types/nullstring.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package customTypes
package customtypes

import (
"database/sql"
Expand Down
2 changes: 1 addition & 1 deletion custom_types/nullstring_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package customTypes
package customtypes

import (
"bytes"
Expand Down
2 changes: 1 addition & 1 deletion custom_types/nulltime.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package customTypes
package customtypes

import (
"database/sql"
Expand Down
2 changes: 1 addition & 1 deletion custom_types/nulltime_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package customTypes
package customtypes

import (
"bytes"
Expand Down

0 comments on commit b515ef6

Please sign in to comment.