This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%{ | |
package main | |
import ( | |
"text/scanner" | |
"strconv" | |
"strings" | |
"fmt" | |
) | |
type Expression interface{} | |
type ParenExpr struct { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Set the pper listening address | |
# export ETCD_PEER_ADDR=127.0.0.1:7001 | |
# Set other command line options like the name and discovery url | |
# from https://discovery.etcd.io/new | |
# export ETCD_OPTS="-name=name_here -discovery=https://discovery.etcd.io/token_here" | |
export ETCD_OPTS="" |