diff options
| author | 2025-10-17 03:21:09 +0300 | |
|---|---|---|
| committer | 2025-10-17 03:21:09 +0300 | |
| commit | fc08f216d6234a5ae7f9e180f0a78a487b4ae8e0 (patch) | |
| tree | b7fed1d5c96a36ac6c196230210b5d370613172d /src | |
| parent | Try to avoid hanging when making requests (diff) | |
| download | ukkoclot-fc08f216d6234a5ae7f9e180f0a78a487b4ae8e0.tar.gz ukkoclot-fc08f216d6234a5ae7f9e180f0a78a487b4ae8e0.tar.xz ukkoclot-fc08f216d6234a5ae7f9e180f0a78a487b4ae8e0.zip | |
Make ukkoclot:main return nil
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.lisp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.lisp b/src/main.lisp index 68ba371..9dfdc85 100644 --- a/src/main.lisp +++ b/src/main.lisp | |||
| @@ -39,7 +39,8 @@ | |||
| 39 | (let ((config (config-load #P"config.default.lisp"))) | 39 | (let ((config (config-load #P"config.default.lisp"))) |
| 40 | (config-merge config #P"config.lisp") | 40 | (config-merge config #P"config.lisp") |
| 41 | (log:info "Starting up ~A" (config-bot-name config)) | 41 | (log:info "Starting up ~A" (config-bot-name config)) |
| 42 | (main-with-config config)) | 42 | (main-with-config config) |
| 43 | nil) | ||
| 43 | (log:info "Quitting!"))) | 44 | (log:info "Quitting!"))) |
| 44 | 45 | ||
| 45 | (defun main-with-config (config) | 46 | (defun main-with-config (config) |