2 changed files with 21 additions and 0 deletions
@ -0,0 +1,15 @@ |
|||||||
|
package controllers |
||||||
|
|
||||||
|
import ( |
||||||
|
"net/http" |
||||||
|
) |
||||||
|
|
||||||
|
//GetChatEmbed gets the embed for chat
|
||||||
|
func GetChatEmbed(w http.ResponseWriter, r *http.Request) { |
||||||
|
http.Redirect(w, r, "/index-standalone-chat.html", http.StatusMovedPermanently) |
||||||
|
} |
||||||
|
|
||||||
|
//GetVideoEmbed gets the embed for video
|
||||||
|
func GetVideoEmbed(w http.ResponseWriter, r *http.Request) { |
||||||
|
http.Redirect(w, r, "/index-video-only.html", http.StatusMovedPermanently) |
||||||
|
} |
||||||
Loading…
Reference in new issue