AnP/Python/AnP/ORM/ORM.py
2026-07-13 07:51:35 +02:00

10 lines
240 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from typing import Self
from AnP.Interfaces.Application.AnPInterface import AnPInterface
class ORM:
def __init__(self:Self, anp:AnPInterface) -> None:
self.anp:AnPInterface = anp