-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Require docs on all public things in data-pipeline (#614)
* Require docs on all public things in data-pipeline * just use allow missing_docs until we have a template for our docs here * rust fmt
- Loading branch information
1 parent
40ca981
commit 9705ec2
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,12 @@ | ||
// Copyright 2024-Present Datadog, Inc. https://www.datadoghq.com/ | ||
// SPDX-License-Identifier: Apache-2.0 | ||
#![deny(missing_docs)] | ||
|
||
//! TraceExporter provides a minimum viable product (MVP) to send traces to agents. The aim of the | ||
//! project at this state is to provide a basic API in order to test its viability and integration | ||
//! in different languages. | ||
|
||
#[allow(missing_docs)] | ||
pub mod span_concentrator; | ||
#[allow(missing_docs)] | ||
pub mod trace_exporter; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters