Initial commit

This commit is contained in:
CarmiCoven
2026-07-23 01:02:12 +10:00
commit b8ffacd916
11 changed files with 132 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
from typing import Optional
from .data import (
AwesomeData,
AwesomeTable,
)
class AwesomeRegistry:
VERSION = AwesomeData.VERSION
def __init__(self, data: AwesomeData):
self.data = data
async def init(self):
await self.data.init()