chore(release): 0.6.0 #14

Merged
pufereq merged 33 commits from release/0.6.0 into main 2026-03-05 19:59:05 +00:00
5 changed files with 65 additions and 38 deletions
Showing only changes of commit faecc38261 - Show all commits

View File

@@ -5,17 +5,9 @@ from __future__ import annotations
import logging as lg
import socket
from enum import Enum
import time
class ClientStatus(str, Enum):
"""Enumeration of client connection statuses."""
ONLINE = "online"
PENDING = "pending"
OFFLINE = "offline"
STALE = "stale"
from judas_server.backend.client_status import ClientStatus
class Client:

View File

@@ -0,0 +1,11 @@
# -*- coding: utf-8 -*-
from enum import Enum
class ClientStatus(str, Enum):
"""Enumeration of client connection statuses."""
ONLINE = "online"
PENDING = "pending"
OFFLINE = "offline"
STALE = "stale"