-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.go
More file actions
43 lines (38 loc) · 823 Bytes
/
main.go
File metadata and controls
43 lines (38 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// DO NOT EDIT.
package main
import (
"fmt"
"log"
_ "github.com/100steps/gin-layout/dao/migration"
)
var bootPaint string = `
.IBBBBBBQBBB5:
iBBBBBBBBBBQBBBBBi
QBBQBIr...r5BBBQQQBg
BBBP. .PBQRRBB
QBB: .IQBBDi :BQMMBb
.BB: :QBBBIEQBB. rBggQB
.BQ iBBB. iBB BQDRB: 华南理工大学百步梯学生创新中心
BZ BBBi RBY 5B QQgQB.
7Q BBB. PBB Bq BQgBQ 技术部制造
2: JBBQ .gBQr gBMBQ.
. BQQB. .BBQBBi
:QBQBBBBZ1UqBBBBBB.
vBBQB1PBBQBQBQBBg:
SBBBB7 :vu5s7.
:BBQB.
::
`
func init() {
fmt.Println(bootPaint)
}
func main() {
app, err := initApp()
app.crontab.Excute()
if err != nil {
panic(err)
}
if err = app.serve(); err != nil {
log.Fatalln(err.Error())
}
}