This repository has been archived on 2022-01-17. You can view files and clone it, but cannot push or open issues/pull-requests.
packaging/src/sources.cr

10 lines
108 B
Crystal

require "uri"
class Package::Sources < Array(URI)
def <<(url : String)
self << URI.parse url
end
end