11 lines
165 B
Go
11 lines
165 B
Go
package handlers
|
|
|
|
import (
|
|
"context"
|
|
"golias/models"
|
|
)
|
|
|
|
func createRoom(ctx context.Context, req *models.RoomReq) (*models.RoomPublic, error) {
|
|
return nil, nil
|
|
}
|