Migrate from templates to Gomponents (#103)
This commit is contained in:
parent
0bf9ab7189
commit
051d032038
104 changed files with 2768 additions and 2824 deletions
25
pkg/routenames/names.go
Normal file
25
pkg/routenames/names.go
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
package routenames
|
||||
|
||||
const (
|
||||
Home = "home"
|
||||
About = "about"
|
||||
Contact = "contact"
|
||||
ContactSubmit = "contact.submit"
|
||||
Login = "login"
|
||||
LoginSubmit = "login.submit"
|
||||
Register = "register"
|
||||
RegisterSubmit = "register.submit"
|
||||
ForgotPassword = "forgot_password"
|
||||
ForgotPasswordSubmit = "forgot_password.submit"
|
||||
Logout = "logout"
|
||||
VerifyEmail = "verify_email"
|
||||
ResetPassword = "reset_password"
|
||||
ResetPasswordSubmit = "reset_password.submit"
|
||||
Search = "search"
|
||||
Task = "task"
|
||||
TaskSubmit = "task.submit"
|
||||
Cache = "cache"
|
||||
CacheSubmit = "cache.submit"
|
||||
Files = "files"
|
||||
FilesSubmit = "files.submit"
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue