mirror of
https://codeberg.org/superseriousbusiness/gotosocial.git
synced 2024-12-18 15:11:47 +03:00
11 lines
139 B
Go
11 lines
139 B
Go
package pub
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// Clock determines the time.
|
|
type Clock interface {
|
|
// Now returns the current time.
|
|
Now() time.Time
|
|
}
|