chore(release): 0.1.0 #1

Merged
pufereq merged 12 commits from release/0.1.0 into main 2025-08-28 22:44:31 +00:00
3 changed files with 32 additions and 1 deletions
Showing only changes of commit eec14b91fd - Show all commits

View File

@@ -0,0 +1,17 @@
# -*- coding: utf-8 -*-
from __future__ import annotations
import logging as lg
from judas_client.connector import Connector
if __name__ == "__main__":
lg.basicConfig(
level=lg.DEBUG,
format="%(asctime)s : [%(levelname)s] : %(threadName)s : %(name)s :: %(message)s",
)
logger = lg.getLogger(__name__)
connector = Connector("127.0.0.1", 3692)
connector.run()