mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-24 10:34:01 +03:00
8 lines
92 B
Python
8 lines
92 B
Python
|
"""User entities module."""
|
||
|
|
||
|
|
||
|
class User:
|
||
|
|
||
|
def __init__(self, id):
|
||
|
self.id = id
|