This repository has been archived on 2024-08-02. You can view files and clone it, but cannot push or open issues or pull requests.
orion/openwrt/wifi_cell.go

18 lines
343 B
Go
Raw Normal View History

package openwrt
// WifiCell reprensents wifi network Cell
type WifiCell struct {
2018-09-20 10:59:11 +02:00
Ssid string
MacAddress string
2018-09-20 10:59:11 +02:00
Encryption string
}
// NewWifiCell returns a new WifiCell object
2018-09-20 10:59:11 +02:00
func NewWifiCell(ssid string, mac string, encrypt string) *WifiCell {
return &WifiCell{
2018-09-20 10:59:11 +02:00
Ssid: ssid,
MacAddress: mac,
2018-09-20 10:59:11 +02:00
Encryption: encrypt,
}
}