mirror of
https://github.com/mudler/LocalAI.git
synced 2025-05-22 19:44:59 +00:00

Golang embed FS has a hard limit that we might exceed when providing many binary alternatives. Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
15 lines
210 B
Go
15 lines
210 B
Go
package main
|
|
|
|
import (
|
|
rice "github.com/GeertJohan/go.rice"
|
|
)
|
|
|
|
var backendAssets *rice.Box
|
|
|
|
func init() {
|
|
var err error
|
|
backendAssets, err = rice.FindBox("backend-assets")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|