Hacker News new | ask | show | jobs
by 5e92cb50239222b 1313 days ago
It's a bit more advanced than what Rust macros provided last time I checked. You can shove whole directories in there and then traverse them or serve as static resources with pretty much one line of code.

Random blog post with a few examples:

https://blog.carlmjohnson.net/post/2021/how-to-use-go-embed/

2 comments

You can do the same in Rust with include_dir[1]

1: https://docs.rs/include_dir/latest/include_dir/

Very cool, I guess one the the advantages of rust macros is that you could write your own to do something more advanced in theory