Coverage for src/threadful/__init__.py: 100%
4 statements
« prev ^ index » next coverage.py v7.4.3, created at 2024-02-29 21:18 +0100
« prev ^ index » next coverage.py v7.4.3, created at 2024-02-29 21:18 +0100
1"""
2This file exposes the most important functions of this library.
3"""
5from .bonus import animate
6from .core import ThreadWithReturn, thread
8threadify = thread
10__all__ = [
11 "ThreadWithReturn",
12 "thread",
13 "threadify",
14 "animate",
15]