Files
bo-ptycho/ptycho/base.py
T
2026-08-05 13:57:01 +09:00

15 lines
237 B
Python

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