feat: 🎉 complete maker nginx(app)

This commit is contained in:
zhaoyupeng
2025-11-26 21:03:41 +08:00
parent 4ec58ce4e5
commit 11523e3e48
26 changed files with 1458 additions and 6 deletions

View File

@@ -0,0 +1,15 @@
package installer
import "context"
func (i *installer) Prepare(ctx context.Context) error {
var (
err error
)
if err = i.targetOK(ctx); err != nil {
return err
}
return nil
}