This commit is contained in:
Alex55 2026-03-24 16:50:35 +02:00
parent 8a7bbf227f
commit ef47208ce9
3 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ import smtplib
from email.message import EmailMessage from email.message import EmailMessage
from dotenv import load_dotenv from dotenv import load_dotenv
from utils import build_items_html, build_keys_html, render_template from services.utils import build_items_html, build_keys_html, render_template
load_dotenv() load_dotenv()

View File

@ -1,8 +1,8 @@
import sys import sys
from mailer import send_plain_email, send_html_email from services.mailer import send_plain_email, send_html_email
import sqlite3 import sqlite3
from datetime import datetime from datetime import datetime
from gg import create_messagea from services.gg import create_messagea
def read_multiline(prompt: str) -> str: def read_multiline(prompt: str) -> str: