11 lines
104 B
Go
11 lines
104 B
Go
package auxtool
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
func TimeNow() string {
|
|
return time.Now().Format(time.RFC3339)
|
|
|
|
}
|