bot contesta con e2ee

This commit is contained in:
2026-03-04 00:59:10 +00:00
parent bd8e1432e5
commit 396fc39b90
12 changed files with 316 additions and 46 deletions
+12
View File
@@ -0,0 +1,12 @@
package main
import (
"database/sql"
moderncsqlite "modernc.org/sqlite"
)
func init() {
// mautrix dbutil opens sqlite as "sqlite3"; register the pure-Go driver under that name.
sql.Register("sqlite3", &moderncsqlite.Driver{})
}