Skip to main content
Sign in
Snippets Groups Projects
Select Git revision
  • imad_branch
  • master default protected
  • download
3 results

tag_silentcities.py

Blame
  • parameters.go 179 B
    package gossip
    
    import (
    	flag "github.com/spf13/pflag"
    )
    
    const (
    	GOSSIP_PORT = "gossip.port"
    )
    
    func init() {
    	flag.Int(GOSSIP_PORT, 14666, "tcp port for gossip connection")
    }