mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 00:21:55 +00:00
15 lines
160 B
Go
15 lines
160 B
Go
|
package goscrobble
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
func ClearTokenTimer() {
|
||
|
go func() {
|
||
|
for now := range time.Tick(time.Second) {
|
||
|
fmt.Println(now)
|
||
|
}
|
||
|
}()
|
||
|
}
|