First commit

This commit is contained in:
2024-10-28 20:33:40 -04:00
commit 5d03c6aa09
9 changed files with 271 additions and 0 deletions

9
utils/time.go Normal file
View File

@ -0,0 +1,9 @@
package utils
import (
"time"
)
func ParseGameTime(gameTime string) (time.Time, error) {
return time.Parse("03:04 PM", gameTime)
}