mirror of
https://github.com/go-admin-team/go-admin.git
synced 2026-09-26 19:58:45 +00:00
11 lines
120 B
Go
11 lines
120 B
Go
package config
|
|
|
|
type Ssl struct {
|
|
KeyStr string
|
|
Pem string
|
|
Enable bool
|
|
Domain string
|
|
}
|
|
|
|
var SslConfig = new(Ssl)
|