8 lines
144 B
Python
8 lines
144 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from typing import Self
|
|
|
|
class HTTPSocketDriverInterface:
|
|
|
|
def start(self:Self) -> None:pass |