meowlib/servercard.go

10 lines
203 B
Go
Raw Normal View History

2024-01-12 23:17:34 +01:00
package meowlib
func (sc *ServerCard) GetUid() string {
return sc.Login + ":" + sc.Password + "@" + sc.Url
}
func (sc *ServerCard) IsSame(sc1 *ServerCard) bool {
return sc.GetUid() == sc1.GetUid()
}