@echo off
echo Generating the dynamic code
go generate
if %errorlevel% neq 0 (
pause
exit /b %errorlevel%
)
echo Building the router generator
go build ./router_gen
echo Running the router generator
router_gen.exe
echo Building the executable
go build -o gosora.exe
echo Running Gosora
gosora.exe