mirror of
https://github.com/i2p/i2p.i2p.git
synced 2026-04-23 12:15:59 +00:00
11 lines
229 B
Python
11 lines
229 B
Python
#! /usr/bin/env python
|
|
# wrapper script to run stasher node
|
|
|
|
# set this to the directory where you've installed stasher
|
|
stasherDir = "/path/to/my/stasher/dir"
|
|
|
|
import sys
|
|
sys.path.append(stasherDir)
|
|
import stasher
|
|
stasher.main()
|