diff options
author | Joe <rbo@gmx.us> | 2024-01-31 20:20:20 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2024-01-31 20:20:20 +0100 |
commit | 808cc138f401cb5d398567f66ef4987f8be5af7a (patch) | |
tree | 89dcfa89744ce055c9bdeacb13f1bd1c983a3fc2 /src/c_parse.go | |
parent | mkay (diff) | |
download | hardflip-808cc138f401cb5d398567f66ef4987f8be5af7a.tar.gz hardflip-808cc138f401cb5d398567f66ef4987f8be5af7a.tar.bz2 hardflip-808cc138f401cb5d398567f66ef4987f8be5af7a.tar.xz hardflip-808cc138f401cb5d398567f66ef4987f8be5af7a.tar.zst hardflip-808cc138f401cb5d398567f66ef4987f8be5af7a.zip |
decrypting gpg at parse time was too fucking slow i had to overcome
Diffstat (limited to 'src/c_parse.go')
-rw-r--r-- | src/c_parse.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/c_parse.go b/src/c_parse.go index 2a7b881..faa8223 100644 --- a/src/c_parse.go +++ b/src/c_parse.go @@ -58,8 +58,7 @@ import ( "gopkg.in/yaml.v3" ) -func c_read_yaml_file(file string, - opts HardOpts, ui *HardUI) (*HostNode, error) { +func c_read_yaml_file(file string, ui *HardUI) (*HostNode, error) { var host HostNode yaml_file, err := os.ReadFile(file) |