I'm using code similar to this:
import (
"fmt"
"time"
)
func main() {
now := time.Now()
fmt.Println(now.Round(0))
y, m, d := now.Date()
fmt.Println(y, int(m), d)
}
Using this code how can I combine y, m and d so that it would be of format "yyyy-mm-dd" or like "2023-04-18"?