mirror of
https://github.com/mariadb-corporation/mariadb-connector-python.git
synced 2025-07-28 06:40:03 +00:00
10 lines
183 B
Python
10 lines
183 B
Python
class FOO():
|
|
|
|
def __init__(self, indicator):
|
|
self.indicator = indicator
|
|
|
|
FOO_NULL = FOO(1)
|
|
FOO_DEFAULT = FOO(2)
|
|
|
|
__all__ = ["CLIENT", "CURSOR", "FIELD_TYPE", "INDICATOR"]
|