mirror of https://github.com/lumapu/ahoy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
329 B
15 lines
329 B
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
# TBD
|
|
|
|
class ESBFrameFactory:
|
|
def __init__(self, payload):
|
|
self.payload = payload
|
|
|
|
class ESBTransactionFactory:
|
|
"""
|
|
Put a payload into ESB packets for transmission
|
|
"""
|
|
def __init__(self, src, dst, **params):
|
|
self.src = src
|
|
self.dst = dst
|
|
|