renamed to base

This commit is contained in:
2026-08-05 13:57:01 +09:00
parent 8aae3fdf42
commit 6e74a3b616
7 changed files with 5 additions and 5 deletions
+14
View File
@@ -0,0 +1,14 @@
from abc import ABC, abstractmethod
from typing import Any
class PtychoEngine(ABC):
name = None
def __init__(self, config):
self.config = config
@abstractmethod
def run(self, run_id="") -> None:
pass