10 lines
210 B
Go
10 lines
210 B
Go
//go:build !(linux || windows || darwin)
|
|
|
|
package sprigx
|
|
|
|
var (
|
|
osGenericMap map[string]any = map[string]any{}
|
|
osHtmlMap map[string]any = map[string]any{}
|
|
osTxtMap map[string]any = map[string]any{}
|
|
)
|