blue_sky 0.1.1

A fun game where you guess what number the computer has chosen.
Documentation
1
2
3
4
5
6
//mod.rs 作用是组织一个目录下的多个rs 文件(模块),允许哪些模块暴露给外部使用(公共接口)
pub mod jdbc_operation;
pub mod redis_operation;
mod common_operation;

pub fn save() {}