Skip to content

Commit a4d81d1

Browse files
committed
augment client
1 parent 043ef07 commit a4d81d1

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

.fernignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Specify files that shouldn't be modified by Fern
22
src/axiomatic/axtract.py
33
src/axiomatic/magic.py
4-
src/axiomatic/pic_helpers.py
4+
src/axiomatic/pic_helpers.py
5+
src/axiomatic/document_helpers.py

src/axiomatic/client.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from .base_client import BaseClient, AsyncBaseClient
2+
3+
4+
class Axiomatic(BaseClient): ...
5+
6+
7+
class AsyncAxiomatic(AsyncBaseClient): ...

src/axiomatic/document_helper.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
def from_url(url: str) -> str: ...

0 commit comments

Comments
 (0)