agi.sqlite_stub.go 355 B

12345678
  1. //go:build (linux && mipsle) || (windows && arm) || (windows && 386)
  2. package agi
  3. // SQLiteLibRegister is a no-op on platforms where modernc.org/libc/sqlite
  4. // does not provide a C-runtime port (linux/mipsle, windows/arm, windows/386).
  5. // requirelib("sqlite") will return false in AGI scripts on these platforms.
  6. func (g *Gateway) SQLiteLibRegister() {}