mirror of
https://github.com/rjNemo/pass-gen
synced 2026-06-12 05:16:43 +00:00
10 lines
209 B
Python
10 lines
209 B
Python
from __future__ import annotations
|
|
|
|
|
|
class FakeRepository:
|
|
def save(self, password: str) -> None:
|
|
...
|
|
|
|
@classmethod
|
|
def get_instance(cls) -> FakeRepository:
|
|
return FakeRepository()
|