Nicolas Martyanoff on Nostr: [1/2] I have finished a minimal Go module for my BCL configuration language (see my ...
[1/2]
I have finished a minimal Go module for my BCL configuration language (see my GitHub account), BCL (for Block-based Configuration Language). I still have to figure out if I want to support named blocks, for example:
listener "http" {
address ":80"
}
listener "https" {
address ":443"
}
instead of:
listener {
name "http"
address ":80"
}
listener {
name "https"
address ":443"
}
I have finished a minimal Go module for my BCL configuration language (see my GitHub account), BCL (for Block-based Configuration Language). I still have to figure out if I want to support named blocks, for example:
listener "http" {
address ":80"
}
listener "https" {
address ":443"
}
instead of:
listener {
name "http"
address ":80"
}
listener {
name "https"
address ":443"
}