gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

clock.go (139B)


      1 package pub
      2 
      3 import (
      4 	"time"
      5 )
      6 
      7 // Clock determines the time.
      8 type Clock interface {
      9 	// Now returns the current time.
     10 	Now() time.Time
     11 }