blob: 31e169adbfbce4f1f646397ab04e30a1d62b606d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package config
import (
"os"
"strings"
"unicode"
"go.wit.com/log"
"golang.org/x/term"
)
// loads a file from ~/.config/<argname>/
func Load(argname string) ([]byte, string) {
}
|