Feat: styles and session

This commit is contained in:
Grail Finder
2025-05-02 12:34:58 +03:00
parent d18855cd49
commit cd1100d4b1
10 changed files with 164 additions and 13 deletions

10
handlers/actions.go Normal file
View File

@ -0,0 +1,10 @@
package handlers
import (
"context"
"golias/models"
)
func createRoom(ctx context.Context, req *models.RoomReq) (*models.RoomPublic, error) {
return nil, nil
}