git-social-server/src/main.rs

8 lines
127 B
Rust
Raw Normal View History

2020-06-23 01:05:31 +02:00
mod git;
use git::repo::SocialRepo;
fn main() {
SocialRepo::new("/home/vladan/dev/git.social/git-social-server").ok();
}