mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 20:01:13 -05:00
7 lines
240 B
Python
7 lines
240 B
Python
class Protocol(object):
|
|
def __init__(self, options, config):
|
|
self.options = options
|
|
self.config = config
|
|
|
|
def transfer(transfer_specs, dry_run):
|
|
raise "transfer must be overridden by transfer implementation"
|