mirror of
https://github.com/sst/opencode.git
synced 2025-12-23 10:11:41 +00:00
6 lines
143 B
Python
6 lines
143 B
Python
from opencode_ai import OpenCodeClient
|
|
|
|
client = OpenCodeClient()
|
|
files = client.file_status() or []
|
|
for f in files:
|
|
print(f.path, f.type)
|