#!/usr/bin/env python3 # -*- coding: utf-8 -*- from typing import Self from Abstracts.ModelAbstract import ModelAbstract from Interfaces.Application.AnPInterface import AnPInterface from Models.RequestModel import RequestModel class AIController(ModelAbstract): def __init__(self:Self, anp:AnPInterface) -> None: self.anp: AnPInterface = anp def new_message(self:Self, request:RequestModel) -> None: pass