-
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.
refactor(handler): changed handlers to be controllers
to enhance clarity, changed naming scheme of handlers to be controllers
- Loading branch information
1 parent
62ca9c1
commit 6109530
Showing
2 changed files
with
15 additions
and
15 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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package meeting_controller | ||
|
||
import ( | ||
"github.com/rise8-us/neverl8/service" | ||
) | ||
|
||
type MeetingController struct { | ||
MeetingService *service.MeetingService | ||
} | ||
|
||
func NewMeetingController(MeetingService *service.MeetingService) *MeetingController { | ||
return &MeetingController{MeetingService} | ||
} | ||
|
||
//TODO: Add controller methods for HTTP requests |
This file was deleted.
Oops, something went wrong.