Browse Source

Skeleton

master
Julio Biason 6 years ago
commit
f108c33ff9
  1. 1
      .gitignore
  2. 10
      README.md
  3. 7
      template/Cargo.toml
  4. 3
      template/src/main.rs

1
.gitignore vendored

@ -0,0 +1 @@
*.sw?

10
README.md

@ -0,0 +1,10 @@
# Downfav
Download your favorites/likes from Mastodon/Twitter.
## Architecture
This is mostly an experiment in creating microservices with Rust.
* `template` is a microservice that receives a template name and some data and
renders the template back to disk.

7
template/Cargo.toml

@ -0,0 +1,7 @@
[package]
name = "template"
version = "0.1.0"
authors = ["Julio Biason <julio.biason@deliverit.com.br>"]
edition = "2018"
[dependencies]

3
template/src/main.rs

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}
Loading…
Cancel
Save