12 lines
111 B
Go
12 lines
111 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
_ "go_redis_learn2/internal/repository/db"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
|
||
|
fmt.Println(33)
|
||
|
}
|