Skip to content
This repository has been archived by the owner on Jun 3, 2024. It is now read-only.

Commit

Permalink
test: debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
oknozor committed Oct 27, 2023
1 parent f230a05 commit 6d02ff4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions crates/libs/tagger/src/tagger/location.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ pub static CITY_TAGGER: Lazy<CityTagger> = Lazy::new(|| {
pub static CITY_DISTRICT_TAGGER: Lazy<CityDistrictTagger> = Lazy::new(|| {
let assets =
ASSETS_PATH.get_or_init(|| PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("assets"));
println!("LES ASSETS");
println!("{:?}", assets);
let path = assets.join("cities_districts.json");
let locations = fs::read(path).expect("city district data");
let locations: CitiesDistricts =
Expand Down

0 comments on commit 6d02ff4

Please sign in to comment.