talircd/bin/main.ml

11 lines
201 B
OCaml
Raw Normal View History

2024-01-12 02:49:48 +00:00
Logging.init_pretty_writer stderr
2024-01-12 03:33:40 +00:00
~min_level:TRACE;
2024-01-07 20:54:39 +00:00
Lwt_main.run
2024-01-10 00:38:02 +00:00
(Server.run {
2024-01-07 20:54:39 +00:00
port = 6667;
tcp_listen_backlog = 8;
hostname = "irc.tali.software";
(* TODO: motd *)
2024-01-07 20:54:39 +00:00
})