mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-25 01:45:15 +00:00
Daniel Mason
fd615102a8
- Fixed looking up invalid profiles - Added valid error handling to bad request && rate limiting - Add Sendgrid library (Will add SMTP later) - Complete password reset process
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)
|
|
}
|
|
}()
|
|
}
|