Skip to content
Snippets Groups Projects
Commit 4c48485c authored by Abel's avatar Abel
Browse files

moved time modul to llama, and deleted test

parent 70c1ea41
No related branches found
No related tags found
No related merge requests found
package timetrackerpackage
import (
"time"
)
func StartTimer() time.Time {
now := time.Now()
return now
}
func StopTimer(StartTime time.Time) time.Duration {
endtime := time.Now()
diff := endtime.Sub(StartTime)
return diff
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment