copyright notices in new files

This commit is contained in:
Scott Lamb 2021-07-08 13:11:56 -07:00
parent 29c80c6f0e
commit f5b4c5a9b6
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,6 @@
// Copyright (C) 2021 Scott Lamb <slamb@slamb.org>
// SPDX-License-Identifier: MIT OR Apache-2.0
use std::fmt::Display; use std::fmt::Display;
use crate::{ConnectionContext, RtspMessageContext}; use crate::{ConnectionContext, RtspMessageContext};

View File

@ -1,3 +1,6 @@
// Copyright (C) 2021 Scott Lamb <slamb@slamb.org>
// SPDX-License-Identifier: MIT OR Apache-2.0
//! tokio-based [`Connection`]. //! tokio-based [`Connection`].
//! //!
//! In theory there could be a similar async-std-based implementation. //! In theory there could be a similar async-std-based implementation.