Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
lima-vm
GitHub Repository: lima-vm/lima
Path: blob/master/pkg/httputil/httputil.go
2611 views
1
// SPDX-FileCopyrightText: Copyright The Lima Authors
2
// SPDX-License-Identifier: Apache-2.0
3
4
package httputil
5
6
// ErrorJSON is returned with "application/json" content type and non-2XX status code.
7
type ErrorJSON struct {
8
Message string `json:"message"`
9
}
10
11