summaryrefslogtreecommitdiff
path: root/bar.go
diff options
context:
space:
mode:
Diffstat (limited to 'bar.go')
-rw-r--r--bar.go7
1 files changed, 5 insertions, 2 deletions
diff --git a/bar.go b/bar.go
index 510d292..a2a9d3c 100644
--- a/bar.go
+++ b/bar.go
@@ -1,10 +1,13 @@
package main
-import "fmt"
+import (
+ "fmt"
+ "github.com/HelixBePraised/jasbr/modules"
+)
// Bar is the struct that holds each of the modules and displays the data from them
type Bar struct {
- Modules []Module
+ Modules []modules.Module
}
func (b Bar) Display() string {