Skip to content

Commit

Permalink
fix: add missing license headers
Browse files Browse the repository at this point in the history
  • Loading branch information
Jannis committed Nov 13, 2023
1 parent 258964c commit 87ce32f
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 0 deletions.
3 changes: 3 additions & 0 deletions common/src/indexer_service/http/config.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2023-, GraphOps and Semiotic Labs.
// SPDX-License-Identifier: Apache-2.0

use std::net::SocketAddr;

use alloy_primitives::Address;
Expand Down
3 changes: 3 additions & 0 deletions common/src/indexer_service/http/indexer_service.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2023-, GraphOps and Semiotic Labs.
// SPDX-License-Identifier: Apache-2.0

use std::{
collections::HashMap, fmt::Debug, net::SocketAddr, path::PathBuf, sync::Arc, time::Duration,
};
Expand Down
3 changes: 3 additions & 0 deletions common/src/indexer_service/http/metrics.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2023-, GraphOps and Semiotic Labs.
// SPDX-License-Identifier: Apache-2.0

use prometheus::{register_int_counter_vec, IntCounterVec};

pub struct IndexerServiceMetrics {
Expand Down
3 changes: 3 additions & 0 deletions common/src/indexer_service/http/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2023-, GraphOps and Semiotic Labs.
// SPDX-License-Identifier: Apache-2.0

mod config;
mod indexer_service;
mod metrics;
Expand Down
3 changes: 3 additions & 0 deletions common/src/indexer_service/http/request_handler.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2023-, GraphOps and Semiotic Labs.
// SPDX-License-Identifier: Apache-2.0

use std::sync::Arc;

use axum::{
Expand Down
3 changes: 3 additions & 0 deletions common/src/indexer_service/http/scalar_receipt_header.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2023-, GraphOps and Semiotic Labs.
// SPDX-License-Identifier: Apache-2.0

use std::ops::Deref;

use headers::{Header, HeaderName, HeaderValue};
Expand Down
3 changes: 3 additions & 0 deletions common/src/indexer_service/mod.rs
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
// Copyright 2023-, GraphOps and Semiotic Labs.
// SPDX-License-Identifier: Apache-2.0

pub mod http;
3 changes: 3 additions & 0 deletions service/build.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2023-, GraphOps and Semiotic Labs.
// SPDX-License-Identifier: Apache-2.0

use build_info_build::DependencyDepth;

fn main() {
Expand Down

0 comments on commit 87ce32f

Please sign in to comment.