7 lines
81 B
Python
7 lines
81 B
Python
|
from custom_decorators import singleton
|
||
|
|
||
|
|
||
|
@singleton
|
||
|
class UserService:
|
||
|
pass
|