8 lines
172 B
Python
8 lines
172 B
Python
|
from datetime import datetime
|
||
|
from typing import Protocol
|
||
|
|
||
|
|
||
|
class DateTimeProvider(Protocol):
|
||
|
def get_current_time(self) -> datetime:
|
||
|
raise NotImplementedError
|