13 lines
298 B
Go
13 lines
298 B
Go
|
package setup
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"forge.cadoles.com/wpetit/clearcase/internal/config"
|
||
|
"forge.cadoles.com/wpetit/clearcase/internal/http/handler/webui/issue"
|
||
|
)
|
||
|
|
||
|
func NewIssueHandlerFromConfig(ctx context.Context, conf *config.Config) (*issue.Handler, error) {
|
||
|
return issue.NewHandler(), nil
|
||
|
}
|