Add TODOs

This commit is contained in:
Leonard Steppy 2025-12-26 00:09:04 +01:00
parent 94ab55b6ab
commit deca0a4a48

View File

@ -5,6 +5,7 @@ DEFAULT_SLEEP_SECONDS=3
function show_help { function show_help {
local cmd=$0 local cmd=$0
# TODO accept list of servers as argument
echo "Create a start loop for the proxy server and optionally start a number of paper servers with it" echo "Create a start loop for the proxy server and optionally start a number of paper servers with it"
echo "" echo ""
@ -12,13 +13,14 @@ function show_help {
echo "" echo ""
echo "OPTIONS:" echo "OPTIONS:"
echo " -s --sleep <secs> How many seconds to sleep after stopping the server" echo " -s --sleep <secs> How many seconds to sleep after stopping the server"
# TODO options for paper servers # TODO show server options
echo " -h --help Show this messasge" echo " -h --help Show this message"
exit exit
} }
function main { function main {
# TODO create servers
local sleep_seconds=$DEFAULT_SLEEP_SECONDS local sleep_seconds=$DEFAULT_SLEEP_SECONDS
local help=false local help=false