mirror of
https://github.com/aljazceru/squatm3gator.git
synced 2025-12-17 06:34:23 +01:00
14 lines
240 B
Python
14 lines
240 B
Python
import simplejson
|
|
from modules.Classes import Result
|
|
|
|
|
|
def print_text_to_console(msg):
|
|
|
|
print(msg)
|
|
|
|
|
|
def print_json_to_console(messages, domains):
|
|
|
|
res = Result.Result(messages, domains)
|
|
print(simplejson.dumps(res, ensure_ascii=False))
|