12 lines
92 B
Go
12 lines
92 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"cc/db"
|
||
|
"cc/web"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
defer db.DB.Close()
|
||
|
web.Go()
|
||
|
}
|