From 3b25b5bc0254c7462555c9911c67266627428795 Mon Sep 17 00:00:00 2001 From: Jackson Taylor Date: Fri, 2 Oct 2020 23:10:52 -0400 Subject: Create modules package --- bar.go | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'bar.go') 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 { -- cgit v1.2.3