-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed some minor grammar and magic number errors
- Loading branch information
1 parent
9b3a53e
commit dff31d7
Showing
6 changed files
with
31 additions
and
20 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
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
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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
package meeting_controller | ||
package meetingcontroller | ||
|
||
import ( | ||
"github.com/rise8-us/neverl8/service" | ||
) | ||
|
||
type MeetingController struct { | ||
MeetingService *service.MeetingService | ||
type meetingController struct { | ||
meetingService *service.MeetingService | ||
} | ||
|
||
func NewMeetingController(MeetingService *service.MeetingService) *MeetingController { | ||
return &MeetingController{MeetingService} | ||
func NewMeetingController(meetingService *service.MeetingService) *meetingController { | ||
return &meetingController{meetingService} | ||
} | ||
|
||
//TODO: Add controller methods for HTTP requests |
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
Binary file not shown.