mirror of
https://github.com/VaalaCat/frp-panel.git
synced 2025-10-04 23:12:52 +08:00
10 lines
171 B
Go
10 lines
171 B
Go
package utils
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
func IsSameDay(first time.Time, second time.Time) bool {
|
|
return first.YearDay() == second.YearDay() && first.Year() == second.Year()
|
|
}
|