added a cmd to see all files and directorys flagged as config

This commit is contained in:
2025-11-04 19:13:49 -03:00
parent fe0da8ad63
commit eb14177d7a
7 changed files with 49 additions and 34 deletions

View File

@@ -0,0 +1,14 @@
package dependencysolve
import "github.com/roboogg133/packets/pkg/packet.lua.d"
type InstallInstruction struct {
Build []string
Install []string
Conflict []string
}
func ResolveDependencies(dependencies packet.PkgDependencies) InstallInstruction {
// Implementation goes here
return InstallInstruction{}
}