mirror of
https://github.com/gogrlx/nats-server.git
synced 2026-04-02 03:38:42 -07:00
14 lines
151 B
Go
14 lines
151 B
Go
// Copyright 2013 Apcera Inc. All rights reserved.
|
|
|
|
package server
|
|
|
|
import (
|
|
"net/url"
|
|
"sync"
|
|
)
|
|
|
|
type route struct {
|
|
mu sync.Mutex
|
|
url *url.URL
|
|
}
|