-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from mfreeman451/29-improve-ui-to-handle-more-…
…devices 29 improve UI to handle more devices
- Loading branch information
Showing
22 changed files
with
1,953 additions
and
531 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ | |
./setup-deb-poller.sh | ||
./setup-deb-dusk-checker.sh | ||
./setup-deb-agent.sh | ||
./setup-deb-cloud.sh | ||
|
||
scp release-artifacts/homemon-poller_1.0.0.deb [email protected]:~/ | ||
scp release-artifacts/homemon-agent_1.0.0.deb [email protected]:~/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package agent | ||
|
||
import ( | ||
"context" | ||
|
||
"github.com/mfreeman451/homemon/proto" | ||
) | ||
|
||
type Service interface { | ||
Start(context.Context) error | ||
Stop() error | ||
} | ||
|
||
// SweepStatusProvider is an interface for services that can provide sweep status | ||
type SweepStatusProvider interface { | ||
GetStatus(context.Context) (*proto.StatusResponse, error) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.