mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-07-31 07:57:22 +02:00
14 lines
214 B
Go
14 lines
214 B
Go
package devices
|
|
|
|
// Clear is used to clear overrides.
|
|
var Clear = Device{clear: true}
|
|
|
|
func has(arr []string, str string) bool {
|
|
for _, item := range arr {
|
|
if item == str {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|