]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - utils/sync-source/lib/transfer/protocol.py
Vendor import of lldb trunk r256945:
[FreeBSD/FreeBSD.git] / utils / sync-source / lib / transfer / protocol.py
1 class Protocol(object):
2     def __init__(self, options, config):
3         self.options = options
4         self.config = config
5
6     def transfer(transfer_specs, dry_run):
7         raise "transfer must be overridden by transfer implementation"