c045b456b4
Improved the router generator facilities. The router generator now supports route groups.
9 lines
163 B
Batchfile
9 lines
163 B
Batchfile
@echo off
|
|
echo Building the router generator
|
|
go build
|
|
if %errorlevel% neq 0 (
|
|
pause
|
|
exit /b %errorlevel%
|
|
)
|
|
echo The router generator was successfully built
|
|
pause |