snowbridge_runtime_common/lib.rs
1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: 2023 Snowfork <hello@snowfork.com>
3//! # Runtime Common
4//!
5//! Common traits and types shared by runtimes.
6#![cfg_attr(not(feature = "std"), no_std)]
7pub mod v2;
8pub use v2::register_token::{ForeignAssetOwner, LocalAssetOwner};