mirror of
https://github.com/harshabose/serve.git
synced 2026-04-22 23:07:27 +08:00
20 lines
313 B
Go
20 lines
313 B
Go
package auth
|
|
|
|
import (
|
|
"github.com/coder/websocket"
|
|
|
|
"github.com/harshabose/skyline_sonata/serve/pkg/interceptor"
|
|
)
|
|
|
|
type Interceptor struct {
|
|
interceptor.NoOpInterceptor
|
|
}
|
|
|
|
func (auth *Interceptor) BindConnection(connection *websocket.Conn) {
|
|
return
|
|
}
|
|
|
|
func (auth *Interceptor) Close() error {
|
|
return nil
|
|
}
|