| 40 | } |
| 41 | |
| 42 | type LocalNodeImpl struct { |
| 43 | lock sync.RWMutex |
| 44 | node *livekit.Node |
| 45 | |
| 46 | nodeStats *NodeStats |
| 47 | } |
| 48 | |
| 49 | func NewLocalNode(conf *config.Config) (*LocalNodeImpl, error) { |
| 50 | nodeID := guid.New(utils.NodePrefix) |
nothing calls this directly
no outgoing calls
no test coverage detected