Skip to content

Commit e3a560d

Browse files
committed
idk how packages work
1 parent 370ee07 commit e3a560d

File tree

4 files changed

+236
-28
lines changed

4 files changed

+236
-28
lines changed

subtrees/work/database/database.go

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package database
+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
package models
2+
3+
import (
4+
"time"
5+
)
6+
7+
type Shift struct {
8+
id int
9+
start time.Time
10+
end time.Time
11+
}
12+
13+
type Task struct {
14+
id int
15+
description string
16+
start time.Time
17+
end time.Time
18+
}

subtrees/work/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module lahman.dev/clock
1+
module github.com/jmelahman/work
22

33
go 1.23.2
44

0 commit comments

Comments
 (0)