Dmitri cb5d273951
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m25s
go
2026-04-19 16:54:12 +02:00

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)
}