Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Testing the CI #19

Closed
wants to merge 17 commits into from
2 changes: 1 addition & 1 deletion src/backend/mod.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pub mod wayland;
pub mod xorg;
pub mod xorg;
1 change: 1 addition & 0 deletions src/backend/wayland/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions src/backend/xorg/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

3 changes: 1 addition & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
pub mod backend;

pub enum Error {
}
pub enum Error {}
16 changes: 2 additions & 14 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,15 +1,3 @@
use flakeshot::Error;

fn run() ->Result<(), Error> {
Err(Error::NotImplemented)
}

fn main() {

let result = run();

if let Err(err) = result {
match err {
}
}
fn main() {println!("TEST");
}
this is not valid code
Loading