compiled_license/src/compiled_license.cr
2018-02-19 20:53:47 -07:00

15 lines
266 B
Crystal

require "./compiled_license/version"
module Compiled
module License
def self.display
{{ run("../compiled_license/licenses.cr").stringify }}
end
end
end
if ARGV[0]? && ARGV[0]? == "--license"
puts Amber::Support::Licenses.display
exit 0
end