Move monitors to a separate package

This commit is contained in:
Mygod
2018-10-02 23:44:06 +08:00
parent 9c6183d662
commit 4de93c5c02
17 changed files with 21 additions and 21 deletions

View File

@@ -1,8 +1,8 @@
package be.mygod.vpnhotspot
import android.app.Service
import be.mygod.vpnhotspot.net.IpNeighbour
import be.mygod.vpnhotspot.net.IpNeighbourMonitor
import be.mygod.vpnhotspot.net.monitor.IpNeighbour
import be.mygod.vpnhotspot.net.monitor.IpNeighbourMonitor
abstract class IpNeighbourMonitoringService : Service(), IpNeighbourMonitor.Callback {
private var neighbours = emptyList<IpNeighbour>()