package utils

import "time"

const format = "2006-01-02 15:04:05"

func GetNow() string {
	return time.Now().Format(format)
}