Chore: touch file for room templ

This commit is contained in:
Grail Finder
2025-05-03 08:20:24 +03:00
parent c8ce2a6727
commit bd4e2431bf
5 changed files with 17 additions and 3 deletions

View File

@ -8,3 +8,9 @@ import (
func createRoom(ctx context.Context, req *models.RoomReq) (*models.RoomPublic, error) {
return nil, nil
}
// context
func getRoomIDFromCtx(ctx context.Context) string {
id, _ := ctx.Value(models.CtxRoomIDKey).(string)
return id
}