diff options
-rw-r--r-- | pkg/pkg.go | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/pkg/pkg.go b/pkg/pkg.go new file mode 100644 index 0000000..e2b86b6 --- /dev/null +++ b/pkg/pkg.go @@ -0,0 +1,16 @@ +// package pkg is a package. +package pkg + +// Day represents the day of the week. +type Day int + +// Days of the week. +const ( + Monday Day = iota + Tuesday + Wednesday + Thursday + Friday + Saturday + Sunday +) |