├── .gitignore ├── .idea ├── .gitignore ├── codeStyles │ └── codeStyleConfig.xml ├── dataSources.xml ├── gotime.iml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── runConfigurations │ └── go_build_nanohard_gotime.xml └── vcs.xml ├── LICENSE ├── README.md ├── controls.go ├── funcs.go ├── go.mod ├── go.sum ├── gotime ├── main.go └── models ├── db.go ├── entry.go ├── project.go └── task.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohard/gotime/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohard/gotime/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohard/gotime/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/dataSources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohard/gotime/HEAD/.idea/dataSources.xml -------------------------------------------------------------------------------- /.idea/gotime.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohard/gotime/HEAD/.idea/gotime.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohard/gotime/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohard/gotime/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohard/gotime/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/go_build_nanohard_gotime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohard/gotime/HEAD/.idea/runConfigurations/go_build_nanohard_gotime.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohard/gotime/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohard/gotime/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohard/gotime/HEAD/README.md -------------------------------------------------------------------------------- /controls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohard/gotime/HEAD/controls.go -------------------------------------------------------------------------------- /funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohard/gotime/HEAD/funcs.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohard/gotime/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohard/gotime/HEAD/go.sum -------------------------------------------------------------------------------- /gotime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohard/gotime/HEAD/gotime -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohard/gotime/HEAD/main.go -------------------------------------------------------------------------------- /models/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohard/gotime/HEAD/models/db.go -------------------------------------------------------------------------------- /models/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohard/gotime/HEAD/models/entry.go -------------------------------------------------------------------------------- /models/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohard/gotime/HEAD/models/project.go -------------------------------------------------------------------------------- /models/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohard/gotime/HEAD/models/task.go --------------------------------------------------------------------------------