Create base_provider.py
Browse files- base_provider.py +10 -0
base_provider.py
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# app/base_provider.py
|
2 |
+
|
3 |
+
# Placeholder for base provider implementations
|
4 |
+
# You can expand this based on your project's requirements
|
5 |
+
|
6 |
+
class AsyncGeneratorProvider:
|
7 |
+
pass
|
8 |
+
|
9 |
+
class ProviderModelMixin:
|
10 |
+
pass
|