openllb / hlb

A developer-first language to build and test any software efficiently
https://openllb.github.io/hlb/
Apache License 2.0
108 stars 12 forks source link

Support URIs in import decl #315

Closed hinshun closed 2 years ago

hinshun commented 2 years ago

Example:

import go from "git://github.com/openllb/hlb@master:/go.hlb"

fs default() {
    go.lint src
}

fs src() {
    local "." with includePatterns("**/*.go", "go.mod", "go.sum", ".golangci.yml", ".git", "**/*.json")
}