diff options
Diffstat (limited to 'timetask/time_entry.go')
| -rw-r--r-- | timetask/time_entry.go | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/timetask/time_entry.go b/timetask/time_entry.go index a4d37ef..32e2825 100644 --- a/timetask/time_entry.go +++ b/timetask/time_entry.go @@ -9,7 +9,7 @@ type TimeEntry struct {  	Task        string  	WorkType    string `yaml:"work_type"`  	Date        time.Time -	Time        uint +	Time        int  	Billable    bool  	Description string  } @@ -23,7 +23,7 @@ func (te *TimeEntry) UnmarshalYAML(unmarshal func(interface{}) error) error {  		Task        string  		WorkType    string `yaml:"work_type"`  		Date        string -		Time        uint +		Time        int  		Billable    bool  		Description string  	} | 
