mirror of
https://github.com/onestardao/WFGY.git
synced 2026-04-29 03:59:52 +00:00
Create basic_layer.py
This commit is contained in:
parent
1772e0aa10
commit
b049f159f9
1 changed files with 6 additions and 0 deletions
6
ProblemMap/mvp_demo/layers/basic_layer.py
Normal file
6
ProblemMap/mvp_demo/layers/basic_layer.py
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
class BasicLayer:
|
||||
def __init__(self, name):
|
||||
self.name = name
|
||||
|
||||
def process(self, data):
|
||||
print(f"[Layer: {self.name}] Processing data → {data}")
|
||||
Loading…
Add table
Add a link
Reference in a new issue