// SPDX-License-Identifier: MIT
// Copyright (c) 2025 Egon Kastelijn
// file: src/context.rs
usecrate::error::ContextError;usecrate::model::StationProfile;/// Provides context for mapping, such as station metadata.
pubtraitContextProvider{fnget_station_profile(&self, id:&str)->Result<StationProfile, ContextError>;}