Merge branch '8784-dir-listings'
[arvados.git] / services / ws / session_v1.go
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 package main
6
7 import (
8         "database/sql"
9         "errors"
10
11         "git.curoverse.com/arvados.git/sdk/go/arvados"
12 )
13
14 // newSessionV1 returns a v1 session -- see
15 // https://dev.arvados.org/projects/arvados/wiki/Websocket_server
16 func newSessionV1(ws wsConn, sendq chan<- interface{}, db *sql.DB, pc permChecker, ac *arvados.Client) (session, error) {
17         return nil, errors.New("Not implemented")
18 }