diff --git a/Dockerfile b/Dockerfile index f620d57..49841d1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,10 @@ +# Copyright (c) 2024 Anass Bouassaba. +# +# This software is licensed under the MIT License. +# You can find a copy of the license in the LICENSE file +# included in the root of this repository or at +# https://opensource.org/licenses/MIT. + FROM swift:5.10 WORKDIR /app diff --git a/LICENSE b/LICENSE index d3d5362..4c129c9 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2024 Anass Bouassaba. All Rights Reserved. +Copyright (c) 2024 Anass Bouassaba. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation diff --git a/README.md b/README.md index f920512..4bce637 100644 --- a/README.md +++ b/README.md @@ -3,11 +3,12 @@ ## Getting Started Prerequisites: + - Install [Swift](https://www.swift.org/) via [Xcode](https://developer.apple.com/xcode/) or [Swift Version Manager](https://github.com/kylef/swiftenv), the supported Swift version is 5.10. - Install [SwiftFormat](https://github.com/nicklockwood/SwiftFormat). - Install [SwiftLint](https://github.com/realm/SwiftLint). -This is a Swift package, it can be installed using the [Swift Package Manager](https://www.swift.org/documentation/package-manager/) and imported in your code as follows: +This is a Swift package, it can be installed using the [Swift Package Manager](https://www.swift.org/documentation/package-manager/) and imported in your code as follows: ```swift import VoltaserveCore @@ -15,13 +16,13 @@ import VoltaserveCore Format code: -``` +```shell swiftformat . ``` Lint code: -``` +```shell swiftlint . ``` @@ -29,10 +30,10 @@ swiftlint . The test suite expects the following accounts to exist: -| Email | Password | -| ----------------------- | ----------- | -| test@koupr.com | `Passw0rd!` | -| test+1@koupr.com | `Passw0rd!` | +| Email | Password | +| ---------------- | ----------- | +| test@koupr.com | `Passw0rd!` | +| test+1@koupr.com | `Passw0rd!` | Build and run with Docker: diff --git a/Sources/Account.swift b/Sources/Account.swift index b35c827..1227cad 100644 --- a/Sources/Account.swift +++ b/Sources/Account.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/Common/Error.swift b/Sources/Common/Error.swift index 8c22c6f..83af198 100644 --- a/Sources/Common/Error.swift +++ b/Sources/Common/Error.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation diff --git a/Sources/Common/Request.swift b/Sources/Common/Request.swift index bcd944e..06af894 100644 --- a/Sources/Common/Request.swift +++ b/Sources/Common/Request.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/Common/URLRequest+AuthHeader.swift b/Sources/Common/URLRequest+AuthHeader.swift index 4477b7d..2000a97 100644 --- a/Sources/Common/URLRequest+AuthHeader.swift +++ b/Sources/Common/URLRequest+AuthHeader.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/Common/URLRequest+JSON.swift b/Sources/Common/URLRequest+JSON.swift index 7b70490..64ba67e 100644 --- a/Sources/Common/URLRequest+JSON.swift +++ b/Sources/Common/URLRequest+JSON.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/File+Wait.swift b/Sources/File+Wait.swift index 9b6ccb9..5e71288 100644 --- a/Sources/File+Wait.swift +++ b/Sources/File+Wait.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation diff --git a/Sources/File.swift b/Sources/File.swift index 4143e5b..3afd8bb 100644 --- a/Sources/File.swift +++ b/Sources/File.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/Group.swift b/Sources/Group.swift index a08b5cb..a96f94e 100644 --- a/Sources/Group.swift +++ b/Sources/Group.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/IdentityUser.swift b/Sources/IdentityUser.swift index d6405b8..ed4b306 100644 --- a/Sources/IdentityUser.swift +++ b/Sources/IdentityUser.swift @@ -1,3 +1,10 @@ +// Copyright (c) 2024 Anass Bouassaba. +// +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. + import Foundation public struct VOIdentityUser { diff --git a/Sources/Insights.swift b/Sources/Insights.swift index 5b33eba..a0fe079 100644 --- a/Sources/Insights.swift +++ b/Sources/Insights.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/Invitation.swift b/Sources/Invitation.swift index 483ead5..4a97132 100644 --- a/Sources/Invitation.swift +++ b/Sources/Invitation.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/Mosaic.swift b/Sources/Mosaic.swift index af167d9..5c02cad 100644 --- a/Sources/Mosaic.swift +++ b/Sources/Mosaic.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/Organization.swift b/Sources/Organization.swift index 399e02e..9de425b 100644 --- a/Sources/Organization.swift +++ b/Sources/Organization.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/Permission.swift b/Sources/Permission.swift index b95aba1..36602d4 100644 --- a/Sources/Permission.swift +++ b/Sources/Permission.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/Snapshot.swift b/Sources/Snapshot.swift index 0302fd3..c3a45c5 100644 --- a/Sources/Snapshot.swift +++ b/Sources/Snapshot.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/Storage.swift b/Sources/Storage.swift index cacd7dd..4b4a5a6 100644 --- a/Sources/Storage.swift +++ b/Sources/Storage.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/Task+Wait.swift b/Sources/Task+Wait.swift index e7cd35c..b24d925 100644 --- a/Sources/Task+Wait.swift +++ b/Sources/Task+Wait.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation diff --git a/Sources/Task.swift b/Sources/Task.swift index bc048c2..9c50e44 100644 --- a/Sources/Task.swift +++ b/Sources/Task.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/Token.swift b/Sources/Token.swift index 5bd271f..333a261 100644 --- a/Sources/Token.swift +++ b/Sources/Token.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/User.swift b/Sources/User.swift index fc4b1d7..d02b42f 100644 --- a/Sources/User.swift +++ b/Sources/User.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/Workspace.swift b/Sources/Workspace.swift index 9cb32cc..b843703 100644 --- a/Sources/Workspace.swift +++ b/Sources/Workspace.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Tests/AccountTests.swift b/Tests/AccountTests.swift index 46a9ace..610ceff 100644 --- a/Tests/AccountTests.swift +++ b/Tests/AccountTests.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. @testable import VoltaserveCore import XCTest diff --git a/Tests/Common/ClientFactory.swift b/Tests/Common/ClientFactory.swift index 399a1ed..da95fc4 100644 --- a/Tests/Common/ClientFactory.swift +++ b/Tests/Common/ClientFactory.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import VoltaserveCore diff --git a/Tests/Common/DisposableFactory.swift b/Tests/Common/DisposableFactory.swift index f96cd64..5fa0d05 100644 --- a/Tests/Common/DisposableFactory.swift +++ b/Tests/Common/DisposableFactory.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import VoltaserveCore diff --git a/Tests/Common/TokenFactory.swift b/Tests/Common/TokenFactory.swift index 33b2557..279b791 100644 --- a/Tests/Common/TokenFactory.swift +++ b/Tests/Common/TokenFactory.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import VoltaserveCore diff --git a/Tests/Common/XCTestCase+Bundle.swift b/Tests/Common/XCTestCase+Bundle.swift index a584d67..99135e0 100644 --- a/Tests/Common/XCTestCase+Bundle.swift +++ b/Tests/Common/XCTestCase+Bundle.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation import XCTest diff --git a/Tests/Common/XCTestCase+Failure.swift b/Tests/Common/XCTestCase+Failure.swift index 7164aee..e26c85c 100644 --- a/Tests/Common/XCTestCase+Failure.swift +++ b/Tests/Common/XCTestCase+Failure.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import XCTest diff --git a/Tests/FileTests.swift b/Tests/FileTests.swift index 2171810..3b7b262 100644 --- a/Tests/FileTests.swift +++ b/Tests/FileTests.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. @testable import VoltaserveCore import XCTest diff --git a/Tests/GroupTests.swift b/Tests/GroupTests.swift index 4230095..c46c4d8 100644 --- a/Tests/GroupTests.swift +++ b/Tests/GroupTests.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. @testable import VoltaserveCore import XCTest diff --git a/Tests/Infra/Config.swift b/Tests/Infra/Config.swift index ca884b2..df08f41 100644 --- a/Tests/Infra/Config.swift +++ b/Tests/Infra/Config.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation import VoltaserveCore diff --git a/Tests/InsightsTests.swift b/Tests/InsightsTests.swift index 2786906..4d89dcc 100644 --- a/Tests/InsightsTests.swift +++ b/Tests/InsightsTests.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. @testable import VoltaserveCore import XCTest diff --git a/Tests/InvitationTests.swift b/Tests/InvitationTests.swift index c9d57a5..187b24b 100644 --- a/Tests/InvitationTests.swift +++ b/Tests/InvitationTests.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. @testable import VoltaserveCore import XCTest diff --git a/Tests/MosaicTests.swift b/Tests/MosaicTests.swift index 4c42875..a8730a1 100644 --- a/Tests/MosaicTests.swift +++ b/Tests/MosaicTests.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. @testable import VoltaserveCore import XCTest diff --git a/Tests/OrganizationTests.swift b/Tests/OrganizationTests.swift index 5f52a5b..45eda0d 100644 --- a/Tests/OrganizationTests.swift +++ b/Tests/OrganizationTests.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. @testable import VoltaserveCore import XCTest diff --git a/Tests/SnapshotsTests.swift b/Tests/SnapshotsTests.swift index c7410fb..928beb1 100644 --- a/Tests/SnapshotsTests.swift +++ b/Tests/SnapshotsTests.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. @testable import VoltaserveCore import XCTest diff --git a/Tests/StorageTests.swift b/Tests/StorageTests.swift index 12ab36b..ace387f 100644 --- a/Tests/StorageTests.swift +++ b/Tests/StorageTests.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. @testable import VoltaserveCore import XCTest diff --git a/Tests/TaskTests.swift b/Tests/TaskTests.swift index 4b4823b..15c4432 100644 --- a/Tests/TaskTests.swift +++ b/Tests/TaskTests.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. @testable import VoltaserveCore import XCTest diff --git a/Tests/WorkspaceTests.swift b/Tests/WorkspaceTests.swift index 7edde1d..bc5ef28 100644 --- a/Tests/WorkspaceTests.swift +++ b/Tests/WorkspaceTests.swift @@ -1,7 +1,9 @@ -// Copyright 2024 Anass Bouassaba. +// Copyright (c) 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. @testable import VoltaserveCore import XCTest