about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authoraob <aob@tilde.institute>2020-08-23 20:24:26 -0400
committeraob <aob@tilde.institute>2020-08-23 20:24:26 -0400
commitaf39f8d8e1688dd7b90aa7f727a738fa321c0502 (patch)
treea0fa8b9eaac37b6a3bab8c4f68109b509ba8977c
parentda8cf7fdc1b8836ebc68a202f5f6f3cf4221f02e (diff)
downloadhello-af39f8d8e1688dd7b90aa7f727a738fa321c0502.tar.gz
add subdir
-rw-r--r--pkg/pkg.go16
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
+)