Skip to main content

altium_format/ops/
mod.rs

1// SPDX-License-Identifier: GPL-3.0-only
2// SPDX-FileCopyrightText: 2026 Alexander Kiselev <alex@akiselev.com>
3//
4//! High-level operations for Altium file types.
5//!
6//! This module provides reusable operations for working with Altium files
7//! that can be used by CLI tools and other applications.
8
9pub mod categorization;
10pub mod intlib;
11pub mod output;
12pub mod pcbdoc;
13pub mod pcblib;
14pub mod prjpcb;
15pub mod queries;
16pub mod schdoc;
17pub mod schdoc_edit;
18pub mod schlib;
19pub mod transforms;
20pub mod util;