9 lines
135 B
Python
9 lines
135 B
Python
import logging
|
|
|
|
|
|
class BaseEntity:
|
|
logger = logging.getLogger(__name__)
|
|
|
|
def get_user(self):
|
|
raise NotImplementedError
|