forked from Anri/cal8tor
make models public
This commit is contained in:
parent
1b12cb369f
commit
c2bb8b6fbc
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
use scraper::{Html, Selector};
|
use scraper::{Html, Selector};
|
||||||
|
|
||||||
mod models;
|
pub mod models;
|
||||||
|
|
||||||
/// Fetch the timetable for a class
|
/// Fetch the timetable for a class
|
||||||
pub async fn timetable(year: i8, semester: i8, letter: Option<char>) -> Vec<models::Day> {
|
pub async fn timetable(year: i8, semester: i8, letter: Option<char>) -> Vec<models::Day> {
|
||||||
|
|
Loading…
Reference in a new issue