Skip to content

Commit fa81450

Browse files
+ Added docstring & exported types
1 parent 56396bd commit fa81450

1 file changed

Lines changed: 25 additions & 1 deletion

File tree

src/thread/__init__.py

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,34 @@
1+
"""
2+
## Thread Library
3+
Documentation at https://thread.ngjx.org
4+
5+
6+
---
7+
8+
Released under the GPG-3 License
9+
10+
Copyright (c) thread.ngjx.org, All rights reserved
11+
"""
12+
13+
"""
14+
This file contains the exports to
15+
```py
16+
import thread
17+
```
18+
"""
19+
20+
21+
# Export Core
122
from .thread import (
223
Thread,
3-
ParallelProcessing,
24+
ParallelProcessing
425
)
526

27+
628
from . import (
29+
_types as types,
730
exceptions
831
)
932

33+
# Configuration
1034
from .utils import Settings

0 commit comments

Comments
 (0)