crafty-4/app/classes/helpers/cryptography_helper.py

8 lines
172 B
Python
Raw Normal View History

2024-08-11 17:46:53 +00:00
class CryptoHelper:
def __init__(self, helper):
self.helper = helper
self.test = "hello world"
def say_hello_world(self):
print(self.test)