mirror of
https://github.com/browseros-ai/BrowserOS.git
synced 2026-05-22 13:25:14 +00:00
8 lines
114 B
Go
8 lines
114 B
Go
package engine
|
|
|
|
import "fmt"
|
|
|
|
func fail(format string, args ...any) error {
|
|
return fmt.Errorf(format, args...)
|
|
}
|