mirror of
https://github.com/Alishahryar1/free-claude-code.git
synced 2026-05-20 17:40:50 +00:00
10 lines
197 B
Python
10 lines
197 B
Python
"""OpenCode Zen provider exports."""
|
|
|
|
from providers.defaults import OPENCODE_DEFAULT_BASE
|
|
|
|
from .client import OpenCodeProvider
|
|
|
|
__all__ = [
|
|
"OPENCODE_DEFAULT_BASE",
|
|
"OpenCodeProvider",
|
|
]
|