10 lines
240 B
Python
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 |