On branch DiscordProfile

Initial commit
This commit is contained in:
EG
2026-07-01 15:15:07 +03:00
commit d4bf750c9e
3125 changed files with 601334 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
import datetime
from services.profile_manager import set_value
def get_local_time():
now = datetime.datetime.now()
return now.strftime("%H:%M")
def update_time():
time = get_local_time()
set_value(
"time",
f"My time rn is {time}"
)
return time