gokedex/main.go
2025-06-05 16:09:14 -06:00

18 lines
258 B
Go

package main
import (
"time"
"git.eo13-dev.com/enordaz/gokedex/internal/pokeapi"
)
const prompt = "Pokedex > "
func main() {
pokeClient := pokeapi.NewClient(5*time.Second, 5*time.Minute)
cfg := &config{
pokeClient: pokeClient,
}
startRepl(cfg)
}