1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-04 02:09:26 +02:00

Initial commit.

This commit is contained in:
Paul Liétar 2015-04-25 21:32:07 +01:00
commit a993b60ffa
17 changed files with 872 additions and 0 deletions

28
src/main.rs Normal file
View file

@ -0,0 +1,28 @@
#![crate_name = "librespot"]
#![feature(plugin,core)]
#![plugin(mod_path)]
#![plugin(protobuf_macros)]
#[macro_use] extern crate lazy_static;
extern crate byteorder;
extern crate crypto;
extern crate gmp;
extern crate num;
extern crate protobuf;
extern crate rand;
mod connection;
mod cryptoutil;
mod protocol;
mod session;
mod util;
use session::Session;
fn main() {
let mut s = Session::new();
s.login();
}