diff options
author | Teddy Wing | 2017-06-03 15:30:00 +0200 |
---|---|---|
committer | Teddy Wing | 2017-06-03 15:30:00 +0200 |
commit | 72cfd2966b0de3ae96a37005848087055c4b944a (patch) | |
tree | 9369d9d8e0b2ca8919b1931943a0ff41795346a6 /timetask/project.go | |
parent | b9c75fc559a5d79042e419cba8a9b5a4546c9b6d (diff) | |
download | timetasker-72cfd2966b0de3ae96a37005848087055c4b944a.tar.bz2 |
Move 'fields.go' to 'project.go'
Get rid of all the old commented Fields code. It's no longer used and is
no longer relevant.
Furthermore, since the only thing left in this file is the `Project`
struct, rename the file to 'project.go'.
Diffstat (limited to 'timetask/project.go')
-rw-r--r-- | timetask/project.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/timetask/project.go b/timetask/project.go new file mode 100644 index 0000000..b8fe5c7 --- /dev/null +++ b/timetask/project.go @@ -0,0 +1,10 @@ +package timetask + +type Project struct { + Client int + Project int + Module int + Task int + WorkType int `toml:"work_type"` + Billable bool +} |