Skip to content
This repository has been archived by the owner on Oct 16, 2024. It is now read-only.

Commit

Permalink
almost working
Browse files Browse the repository at this point in the history
  • Loading branch information
joshika39 committed Mar 28, 2024
1 parent f076518 commit eca8f9e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions handler/main.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
from fastapi import FastAPI
from .test_router import testrouter
from .send_router import sendrouter
from .groups_router import groupsrouter
from .health_router import health_router
from .log_router import log_router
from .messages_router import messagesrouter

from lib import msgs
from dblib import get_db_cursor_and_connection
from store import SELF_URL, BASE_PATH

from test_router import testrouter
from send_router import sendrouter
from groups_router import groupsrouter
from health_router import health_router
from log_router import log_router
from messages_router import messagesrouter

result = get_db_cursor_and_connection()

if not result:
Expand Down

0 comments on commit eca8f9e

Please sign in to comment.