NewServer creates a new embedded HTTP server for VNC connections.
()
| 32 | |
| 33 | // NewServer creates a new embedded HTTP server for VNC connections. |
| 34 | func NewServer() *Server { |
| 35 | return NewServerWithLogger(nil) |
| 36 | } |
| 37 | |
| 38 | // NewServerWithLogger creates a new embedded HTTP server with a shared logger. |
| 39 | func NewServerWithLogger(sharedLogger *logger.Logger) *Server { |
nothing calls this directly
no test coverage detected