mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2024-08-30 18:23:09 +00:00
8 lines
172 B
Python
8 lines
172 B
Python
|
class CryptoHelper:
|
||
|
def __init__(self, helper):
|
||
|
self.helper = helper
|
||
|
self.test = "hello world"
|
||
|
|
||
|
def say_hello_world(self):
|
||
|
print(self.test)
|