mirror of
https://github.com/torproject/onionbalance.git
synced 2024-11-26 19:00:25 +00:00
0e310d4021
See 'v3_dev_wip' branch for more fine grained details.
13 lines
288 B
Python
Executable File
13 lines
288 B
Python
Executable File
#! /usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
Convenience wrapper for running onionbalance config generator directly from source tree.
|
|
"""
|
|
|
|
import onionbalance.config_generator.config_generator
|
|
|
|
if __name__ == '__main__':
|
|
onionbalance.config_generator.config_generator.main()
|
|
|