1
0
Fork 0
forked from AbleOS/ableos
ableos/sysdata/programs/sunset_server/src/main.hb

7 lines
156 B
Plaintext
Raw Normal View History

2024-11-10 19:03:01 -06:00
sunset := @use("../../../libraries/sunset_proto/src/lib.hb")
2024-11-10 12:57:48 -06:00
main := fn(): void {
sunset.server.start()
2024-11-10 19:03:01 -06:00
loop if sunset.server.handle_connections() {
2024-11-10 12:57:48 -06:00
}
}