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
+15
View File
@@ -0,0 +1,15 @@
from abc import ABC, abstractmethod
class BOEngine(ABC):
def __init__(self, config):
self.config = config
self.state = None
@abstractmethod
def ask(self):
pass
@abstractmethod
def tell(self, job_config, y_value):
pass