mirror of https://github.com/go-sonic/sonic.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
324 B
Go
17 lines
324 B
Go
package theme
|
|
|
|
import (
|
|
"go.uber.org/fx"
|
|
|
|
"github.com/go-sonic/sonic/injection"
|
|
)
|
|
|
|
func init() {
|
|
injection.Provide(
|
|
NewFileScanner,
|
|
NewPropertyScanner,
|
|
fx.Annotated{Target: NewMultipartZipThemeFetcher, Name: "multipartZipThemeFetcher"},
|
|
fx.Annotated{Target: NewGitThemeFetcher, Name: "gitRepoThemeFetcher"},
|
|
)
|
|
}
|