20 lines
510 B
Go
Raw Normal View History

2025-02-22 09:42:15 +01:00
package port
import (
"context"
"errors"
2025-02-22 09:42:15 +01:00
"forge.cadoles.com/wpetit/clearcase/internal/core/model"
)
var (
ErrFileNotFound = errors.New("file not found")
)
2025-02-22 09:42:15 +01:00
type Forge interface {
GetProjects(ctx context.Context) ([]*model.Project, error)
2025-02-22 18:01:45 +01:00
CreateIssue(ctx context.Context, projectID string, title string, body string) (string, error)
2025-02-22 09:42:15 +01:00
GetIssues(ctx context.Context, projectID string, issueIDs ...string) ([]*model.Issue, error)
GetIssueTemplate(ctx context.Context, projectID string) (string, error)
}