Skip to content
This repository was archived by the owner on Sep 13, 2023. It is now read-only.

Commit 5f3cf3c

Browse files
committed
Expose fs module
1 parent b3d08d3 commit 5f3cf3c

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/fs.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
//! Some helpful functions to deal with file system operations.
2+
//!
3+
//! These are rather simple, but provide a quick and easy way to to common
4+
//! tasks. Also, they have great error messages.
5+
16
use std::path::Path;
27
use std::io::{Read, Write};
38
use std::fs::File;

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ extern crate structopt;
1515
#[macro_use] extern crate log;
1616
extern crate env_logger;
1717

18-
mod fs;
18+
pub mod fs;
1919
mod main_macro;
2020

2121
mod reexports {

0 commit comments

Comments
 (0)