8460: Check permissions.
[arvados.git] / services / ws / handler_v1.go
1 package main
2
3 import (
4         "time"
5
6         "git.curoverse.com/arvados.git/sdk/go/arvados"
7 )
8
9 type handlerV1 struct {
10         Client      arvados.Client
11         PingTimeout time.Duration
12         QueueSize   int
13 }
14
15 func (h *handlerV1) Handle(ws wsConn, events <-chan *event) {
16 }