request jobs generation
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
ycc
2024-01-12 23:17:34 +01:00
parent a9f3b548e5
commit 48b2e78b41
5 changed files with 442 additions and 285 deletions

9
servercard.go Normal file
View File

@ -0,0 +1,9 @@
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()
}