mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-12-24 13:48:04 +08:00
1.mp4 plugin support event record 2.mp4 plugin support auto overwrite oldest record file fix: 1.mysql.go:error never use 2.rtsp/server.go:get url query param 3.device.go:update device to db omit deleted_at
19 lines
258 B
Go
19 lines
258 B
Go
//go:build mysql
|
|
|
|
package db
|
|
|
|
import (
|
|
"database/sql"
|
|
"gorm.io/driver/mysql"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
func init() {
|
|
Factory["mysql"] = func(s string) gorm.Dialector {
|
|
sqlDB, _ := sql.Open("mysql", s)
|
|
return mysql.New(mysql.Config{
|
|
Conn: sqlDB,
|
|
})
|
|
}
|
|
}
|