Skip to content

Commit

Permalink
Create interface.go
Browse files Browse the repository at this point in the history
  • Loading branch information
joshjennings98 authored May 10, 2024
1 parent 1775710 commit 9df512e
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions utils/artefacts/interface.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package artefacts

import (
"context"

"github.com/ARM-software/embedded-development-services-client/client"
)

//go:generate mockgen -destination=../mocks/mock_$GOPACKAGE.go -package=mocks github.com/ARM-software/embedded-development-services-client-utils/$GOPACKAGE IArtefactManager

type IArtefactManager interface {
DownloadJobArtefact(ctx context.Context, jobName string, outputDirectory string, artefactManagerItem client.HalLinkData) (err error)
}

0 comments on commit 9df512e

Please sign in to comment.