Skip to content
Snippets Groups Projects
timer.go 98 B
Newer Older
  • Learn to ignore specific revisions
  • Oliver Herms's avatar
    Oliver Herms committed
    package server
    
    import "time"
    
    type timer interface {
    	Stop() bool
    	Reset(d time.Duration) bool
    }