mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
Fix Go compile issue. (#25986)
The issue was due to 2 merges changing the same code.
This commit is contained in:
parent
d109e72cbe
commit
49b0dcff2a
1 changed files with 1 additions and 1 deletions
|
|
@ -103,7 +103,7 @@ type updateAppStoreAppResponse struct {
|
|||
Err error `json:"error,omitempty"`
|
||||
}
|
||||
|
||||
func (r updateAppStoreAppResponse) error() error { return r.Err }
|
||||
func (r updateAppStoreAppResponse) Error() error { return r.Err }
|
||||
|
||||
func updateAppStoreAppEndpoint(ctx context.Context, request interface{}, svc fleet.Service) (errorer, error) {
|
||||
req := request.(*updateAppStoreAppRequest)
|
||||
|
|
|
|||
Loading…
Reference in a new issue