fixes for web endpoint

Signed-off-by: Ava Affine <ava@sunnypup.io>
This commit is contained in:
Ava Apples Affine 2025-01-13 17:07:37 -08:00
parent fed49ba3cb
commit 6480f27946
4 changed files with 12 additions and 8 deletions

View file

@ -41,13 +41,11 @@ func main() {
logging.Info("startup: starting activity module")
if err := activity.Start(); err != nil {
// TODO: handle gracefully and continue?
log.Fatalf("failed to start activity module: %s", err.Error())
}
logging.Info("startup: starting confession module")
if err := confession.Start(); err != nil {
// TODO: handle gracefully and continue?
log.Fatalf("failed to start confession module: %s", err.Error())
}