Initial commit.

This commit is contained in:
2026-01-09 10:26:16 +08:00
commit 109336e98d
5 changed files with 223 additions and 0 deletions

13
test/test_main.py Normal file
View File

@ -0,0 +1,13 @@
import pytest
class TestMain:
def test_example_1(self):
"""
A basic test example
"""
assert 3 == 1 + 2
if __name__ == "__main__":
pytest.main([__file__])