(w http.ResponseWriter, _ *http.Request)
| 311 | } |
| 312 | |
| 313 | func (s *Server) vaultInfo(w http.ResponseWriter, _ *http.Request) { |
| 314 | writeJSON(w, http.StatusOK, s.currentVault().Info()) |
| 315 | } |
| 316 | |
| 317 | func (s *Server) vaultSettings(w http.ResponseWriter, _ *http.Request) { |
| 318 | settings, err := s.currentVault().GetSettings() |
nothing calls this directly
no test coverage detected