mirror of
https://github.com/c-sooyoung/bo-ptycho.git
synced 2026-09-17 21:29:07 +09:00
15 lines
237 B
Python
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
|