mirror of
https://github.com/onestardao/WFGY.git
synced 2026-04-28 11:40:07 +00:00
6 lines
169 B
Python
6 lines
169 B
Python
class BasicLayer:
|
|
def __init__(self, name):
|
|
self.name = name
|
|
|
|
def process(self, data):
|
|
print(f"[Layer: {self.name}] Processing data → {data}")
|