Skip to content

Instantly share code, notes, and snippets.

View codic12's full-sized avatar
🎯
Focusing

codic12

🎯
Focusing
View GitHub Profile
use std::{
convert::TryInto,
env, fs,
fs::{File, OpenOptions},
io::{BufRead, BufReader, ErrorKind, Read, Seek, SeekFrom, Write},
path::Path,
process
};
fn main() -> std::io::Result<()> {
let args: Vec<String> = env::args().skip(1).collect();
use std::{
convert::TryInto,
env, fs,
fs::{File, OpenOptions},
io::{BufRead, BufReader, ErrorKind, Read, Seek, SeekFrom, Write},
path::Path,
process
};
fn main() -> std::io::Result<()> {
let args: Vec<String> = env::args().skip(1).collect();
@codic12
codic12 / main.rs
Created August 3, 2020 20:51
Main.rs
use dirs;
use gtk::prelude::*;
use gtk::*;
use serde_json::{json, Result, Value};
use std::env;
pub mod extract;
pub mod imgtype;
fn main() -> std::io::Result<()> {