mirror of
https://github.com/fastapi-admin/fastapi-admin.git
synced 2026-03-13 10:32:25 +08:00
9 lines
106 B
Python
9 lines
106 B
Python
import abc
|
|
|
|
|
|
class EnumMixin:
|
|
@classmethod
|
|
@abc.abstractmethod
|
|
def choices(cls):
|
|
pass
|