mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-05-22 05:26:09 +03:00
8 lines
92 B
Python
8 lines
92 B
Python
"""User entities module."""
|
|
|
|
|
|
class User:
|
|
|
|
def __init__(self, id):
|
|
self.id = id
|