Toggle navigation
Toggle navigation
This project
Loading...
Sign in
방승일
/
mamuri-bot
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
윤준석
2022-05-13 23:46:28 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
dc6daa0a2c9335362e3f54d98a4a0fd1b72e6af2
dc6daa0a
1 parent
fb528277
ADD: router initialization in main function
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletions
joongna/main.go
joongna/main.go
View file @
dc6daa0
package
main
import
"github.com/labstack/echo/v4"
import
(
"joongna/router"
"github.com/labstack/echo/v4"
)
func
main
()
{
e
:=
echo
.
New
()
router
.
Init
(
e
)
e
.
Logger
.
Fatal
(
e
.
Start
(
":8080"
))
}
...
...
Please
register
or
login
to post a comment