const.go 124 B

12345678
  1. package db
  2. const (
  3. // DriverPostgres postgres
  4. DriverPostgres = `postgres`
  5. // DriverMySQL MySQL
  6. DriverMySQL = `mysql`
  7. )