mirror of
https://github.com/maoakeEnterprise/amazing.git
synced 2026-04-28 16:04:35 +02:00
config class added
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
from abc import ABC, abstractmethod
|
||||
from .Maze import Maze
|
||||
|
||||
|
||||
class MazeSolver(ABC):
|
||||
@abstractmethod
|
||||
@classmethod
|
||||
def solve(cls, maze: Maze) -> str: ...
|
||||
Reference in New Issue
Block a user