Files
fws_code/tyyp_app/__init__.py

15 lines
295 B
Python
Raw Normal View History

2026-02-27 17:05:29 +08:00
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from __future__ import annotations
from tyyp_app.api import app, create_app
from tyyp_app.automation import input_code, submit_code, submit_phone
__all__ = [
"app",
"create_app",
"submit_phone",
"submit_code",
"input_code",
]