mirror of
https://fastgit.cc/https://github.com/anomalyco/opencode
synced 2026-04-23 02:13:48 +08:00
7 lines
143 B
Python
7 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)
|