2023-11-22 21:19:37 +00:00
|
|
|
|
|
|
|
import common
|
|
|
|
import util/furrytime
|
|
|
|
import util/pingclock
|
2023-11-22 21:42:13 +00:00
|
|
|
import util/batturry
|
2023-11-22 22:02:52 +00:00
|
|
|
import util/volurrme
|
2023-11-23 09:27:54 +00:00
|
|
|
import util/netwurrk
|
2023-11-23 09:41:16 +00:00
|
|
|
import util/emurrji
|
2023-11-23 09:50:15 +00:00
|
|
|
import util/calendurr
|
2023-11-23 10:02:06 +00:00
|
|
|
import util/remminurr
|
2023-11-23 10:07:37 +00:00
|
|
|
import util/passwurrd
|
2023-11-23 11:09:41 +00:00
|
|
|
import util/pw_generaturr
|
2023-11-23 10:13:59 +00:00
|
|
|
import util/temperaturr
|
2023-11-23 12:14:24 +00:00
|
|
|
import util/screenshurrt
|
2023-11-22 21:19:37 +00:00
|
|
|
|
|
|
|
proc dispatch*(cfg: Config) =
|
|
|
|
case cfg.run
|
|
|
|
of FurryTime:
|
|
|
|
furrytime.go()
|
|
|
|
of PingClock:
|
|
|
|
pingclock.go()
|
2023-11-22 21:42:13 +00:00
|
|
|
of Batturry:
|
|
|
|
batturry.go()
|
2023-11-22 22:02:52 +00:00
|
|
|
of Volurrme:
|
|
|
|
volurrme.go()
|
2023-11-23 09:27:54 +00:00
|
|
|
of Netwurrk:
|
|
|
|
netwurrk.go()
|
2023-11-23 09:41:16 +00:00
|
|
|
of Emurrji:
|
|
|
|
emurrji.go()
|
2023-11-23 09:50:15 +00:00
|
|
|
of Calendurr:
|
|
|
|
calendurr.go()
|
2023-11-23 10:02:06 +00:00
|
|
|
of Remminurr:
|
|
|
|
remminurr.go()
|
2023-11-23 10:07:37 +00:00
|
|
|
of Passwurrd:
|
|
|
|
passwurrd.go()
|
2023-11-23 11:09:41 +00:00
|
|
|
of PasswurrdGeneraturr:
|
|
|
|
pw_generaturr.go()
|
2023-11-23 10:13:59 +00:00
|
|
|
of Temperaturr:
|
|
|
|
temperaturr.go()
|
2023-11-23 12:14:24 +00:00
|
|
|
of Screenshurrt:
|
|
|
|
screenshurrt.go()
|
2023-11-22 21:19:37 +00:00
|
|
|
else:
|
|
|
|
echo "No valid run command given"
|