bring back protobuf

This commit is contained in:
jkoberg
2021-10-19 14:05:18 +02:00
parent 2356415099
commit e30c3b2270
6 changed files with 3 additions and 34 deletions
+1 -6
View File
@@ -61,10 +61,5 @@ func read(assetPath string, fileName string) (http.File, error) {
return nil, err
}
f, err := os.Open(p)
if err != nil {
return nil, err
}
return f, nil
return os.Open(p)
}