You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
535 B
22 lines
535 B
package bootstrap
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/HFO4/cloudreve/pkg/conf"
|
|
)
|
|
|
|
// InitApplication 初始化应用常量
|
|
func InitApplication() {
|
|
fmt.Print(`
|
|
___ _ _
|
|
/ __\ | ___ _ _ __| |_ __ _____ _____
|
|
/ / | |/ _ \| | | |/ _ | '__/ _ \ \ / / _ \
|
|
/ /___| | (_) | |_| | (_| | | | __/\ V / __/
|
|
\____/|_|\___/ \__,_|\__,_|_| \___| \_/ \___|
|
|
|
|
V` + conf.BackendVersion + ` Commit #` + conf.LastCommit + ` Pro=` + conf.IsPro + `
|
|
================================================
|
|
|
|
`)
|
|
}
|