mirror of
https://github.com/aljazceru/squatm3gator.git
synced 2026-01-05 23:44:19 +01:00
First release - BlackHat Arsenal tool
This commit is contained in:
12
squatm3-api/wrapper/3rdparty/squatm3/modules/Classes/Result.py
vendored
Normal file
12
squatm3-api/wrapper/3rdparty/squatm3/modules/Classes/Result.py
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
import simplejson
|
||||
class Result:
|
||||
def __init__(self, messages, domains):
|
||||
self.messages = messages
|
||||
self.domains = domains
|
||||
|
||||
def _asdict(self):
|
||||
return self.__dict__
|
||||
|
||||
def toJSON(self):
|
||||
return simplejson.dumps(self.__dict__, ensure_ascii=False)
|
||||
Reference in New Issue
Block a user