query-farm-airport-test-server 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,6 @@
1
+ from . import server
2
+
3
+
4
+ def do_server() -> int:
5
+ return server.run()
6
+
@@ -0,0 +1,9 @@
1
+ import query_farm_flight_server.auth as base_auth
2
+
3
+
4
+ class AccountToken(base_auth.AccountToken):
5
+ pass
6
+
7
+
8
+ class Account(base_auth.Account):
9
+ pass
File without changes