1 2 3 4 5 6 7 8 9 10 11
package database import "time" const ( FileName = "dove.db" LogPrefix = "Database" MaxConnectionLifetime = time.Hour MaxIdleConnections = 5 MaxOpenConnections = 25 )