Added improved models
This commit is contained in:
12
src/cpl_reactive_extensions/abc/operator.py
Normal file
12
src/cpl_reactive_extensions/abc/operator.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from abc import ABC
|
||||
from typing import Any
|
||||
|
||||
from cpl_reactive_extensions.subscriber import Subscriber
|
||||
|
||||
|
||||
class Operator(ABC):
|
||||
def __init__(self):
|
||||
ABC.__init__(self)
|
||||
|
||||
def call(self, subscriber: Subscriber, source: Any):
|
||||
pass
|
||||
Reference in New Issue
Block a user