add Package list into Packages
This commit is contained in:
parent
a683c70cea
commit
4bd7f32dae
@ -9,11 +9,12 @@ public class Package {
|
|||||||
String description;
|
String description;
|
||||||
List<Package> deps;
|
List<Package> deps;
|
||||||
|
|
||||||
public Package(String name, String version, String repo, String desciption) {
|
public Package(String name, String version, String repo, String desciption, List<Package> deps) {
|
||||||
this.name = name;
|
this.name = name;
|
||||||
this.version = version;
|
this.version = version;
|
||||||
this.repo = repo;
|
this.repo = repo;
|
||||||
this.description = desciption;
|
this.description = desciption;
|
||||||
|
this.deps = deps;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user