Skip to content

Commit

Permalink
Strong copyright notice in the lib file
Browse files Browse the repository at this point in the history
  • Loading branch information
kylerchin committed Mar 27, 2024
1 parent 84cbbb8 commit c53509b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
4 changes: 4 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright: Kyler Chin <[email protected]>
// Catenary Transit Initiatives
// Removal of the attribution is not allowed, as covered under the AGPL license

pub mod aspen;
pub mod gtfs_rt_handlers;
pub mod models;
Expand Down
6 changes: 3 additions & 3 deletions src/maple/gtfs_process.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Initial version 3 of ingest written by Kyler Chin
// Removal of the attribution is not allowed, as covered under the AGPL license

use diesel_async::RunQueryDsl;
use std::error::Error;
use std::sync::Arc;
Expand All @@ -8,9 +11,6 @@ use crate::gtfs_ingestion_sequence::shapes_into_postgres::shapes_into_postgres;
use crate::DownloadedFeedsInformation;
use catenary::postgres_tools::CatenaryPostgresPool;

// Initial version 3 of ingest written by Kyler Chin
// Removal of the attribution is not allowed, as covered under the AGPL license

// take a feed id and throw it into postgres
pub async fn gtfs_process_feed(
feed_id: &str,
Expand Down
5 changes: 2 additions & 3 deletions src/maple/main.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
use catenary::postgres_tools::CatenaryPostgresConnection;
use catenary::postgres_tools::CatenaryPostgresPool;
// Initial version 3 of ingest written by Kyler Chin
// This was heavily inspired and copied from Emma Alexia, thank you Emma!
// Removal of the attribution is not allowed, as covered under the AGPL license

use catenary::postgres_tools::CatenaryPostgresPool;
use catenary::postgres_tools::get_connection_pool;
use diesel::prelude::*;
use diesel_async::RunQueryDsl;
Expand All @@ -12,7 +12,6 @@ use git2::Repository;
use service::quicli::prelude::info;
use std::collections::HashMap;
use std::collections::HashSet;
use std::env;
use std::error::Error;
use std::sync::atomic::AtomicUsize;
use std::sync::atomic::Ordering;
Expand Down

0 comments on commit c53509b

Please sign in to comment.