gokedex/main.go
2025-06-05 12:10:26 -06:00

18 lines
245 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)
cfg := &config{
pokeClient: pokeClient,
}
startRepl(cfg)
}