Can build yq with no lua

This commit is contained in:
Mike Farah
2023-10-03 16:22:23 +11:00
parent 5fa41624c9
commit 6e65d44a98
7 changed files with 30 additions and 2 deletions
+11
View File
@@ -0,0 +1,11 @@
//go:build yq_nolua
package yqlib
func NewLuaEncoder(prefs LuaPreferences) Encoder {
return nil
}
func NewLuaDecoder(prefs LuaPreferences) Decoder {
return nil
}