1 // Package ff is a flags-first helper package for configuring programs. 2 // 3 // Runtime configuration must always be specified as commandline flags, so that 4 // the configuration surface area of a program is self-describing. Package ff 5 // provides an easy way to populate those flags from environment variables and 6 // config files. 7 // 8 // See the README at https://github.com/peterbourgon/ff for more information. 9 package ff 10