struct Project {

var info = [String:Any]()

var owner = justin

init(_ name: String) {

info["name"] = name

}

}


var thisProject = Project("iSight360")

thisProject.info["about"] = "Computer vision headset for the visually impaired"

thisProject.info["url"] = "https://github.com/AVE-GuidanceSystems"

thisProject.info["tags"] = ["computer vision", "opencv", "C++", "Linux"]


Website.projects.append(thisProject)