22 lines
666 B
Go
22 lines
666 B
Go
package port
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
|
|
"forge.cadoles.com/wpetit/clearcase/internal/core/model"
|
|
)
|
|
|
|
var (
|
|
ErrFileNotFound = errors.New("file not found")
|
|
)
|
|
|
|
type Forge interface {
|
|
GetAllProjects(ctx context.Context) ([]*model.Project, error)
|
|
CreateIssue(ctx context.Context, projectID string, title string, body string) (string, error)
|
|
GetIssues(ctx context.Context, projectID string, issueIDs ...string) ([]*model.Issue, error)
|
|
GetIssueTemplate(ctx context.Context, projectID string) (string, error)
|
|
GetProjectLanguages(ctx context.Context, projectID string) ([]string, error)
|
|
GetProject(ctx context.Context, projectID string) (*model.Project, error)
|
|
}
|