aboutsummaryrefslogtreecommitdiffstats
path: root/timetask/project.go
diff options
context:
space:
mode:
authorTeddy Wing2017-06-03 15:30:00 +0200
committerTeddy Wing2017-06-03 15:30:00 +0200
commit72cfd2966b0de3ae96a37005848087055c4b944a (patch)
tree9369d9d8e0b2ca8919b1931943a0ff41795346a6 /timetask/project.go
parentb9c75fc559a5d79042e419cba8a9b5a4546c9b6d (diff)
downloadtimetasker-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.go10
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
+}