All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m25s
13 lines
152 B
Go
13 lines
152 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
|
|
"git.kanopo.dev/rhythm/rhythm-backend/internal/config"
|
|
)
|
|
|
|
func main() {
|
|
cfg := config.Load()
|
|
log.Println(cfg.DbUrl)
|
|
}
|