cargo new

This commit is contained in:
Curtis McEnroe 2015-11-28 01:09:30 -05:00
commit 454a37ec68
3 changed files with 10 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
target
Cargo.lock

4
Cargo.toml Normal file
View File

@ -0,0 +1,4 @@
[package]
name = "broauth2"
version = "0.1.0"
authors = ["Curtis McEnroe <programble@gmail.com>"]

4
src/lib.rs Normal file
View File

@ -0,0 +1,4 @@
pub struct Client {
client_id: String,
client_secret: String,
}