Spaces:
Sleeping
Sleeping
Add package inits
Browse files- core/__init__.py +8 -0
- tests/__init__.py +1 -0
- web/__init__.py +1 -0
core/__init__.py
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Core simulation components for DeFi Agents."""
|
| 2 |
+
|
| 3 |
+
from .agent import Agent
|
| 4 |
+
from .defi_mechanics import Pool
|
| 5 |
+
from .simulation import Simulation
|
| 6 |
+
from .analyzer import Analyzer
|
| 7 |
+
|
| 8 |
+
__all__ = ["Agent", "Pool", "Simulation", "Analyzer"]
|
tests/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
"""Tests for DeFi Agents simulation."""
|
web/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
"""Web API components for DeFi Agents simulation."""
|