Skip to content

Commit 0ab945f

Browse files
committed
add license header to test and server files
1 parent 566e356 commit 0ab945f

File tree

58 files changed

+232
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+232
-0
lines changed

compass_app/app/test/data/repositories/activity/activity_repository_local_test.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/data/repositories/activity/activity_repository_local.dart';
26
import 'package:compass_app/data/services/local/local_data_service.dart';
37
import 'package:compass_app/utils/result.dart';

compass_app/app/test/data/repositories/activity/activity_repository_remote_test.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/data/repositories/activity/activity_repository.dart';
26
import 'package:compass_app/data/repositories/activity/activity_repository_remote.dart';
37
import 'package:compass_app/utils/result.dart';

compass_app/app/test/data/repositories/auth/auth_repository_remote_test.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/data/repositories/auth/auth_repository_remote.dart';
26
import 'package:compass_app/utils/result.dart';
37
import 'package:flutter_test/flutter_test.dart';

compass_app/app/test/data/repositories/booking/booking_repository_remote_test.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/data/repositories/booking/booking_repository.dart';
26
import 'package:compass_app/data/repositories/booking/booking_repository_remote.dart';
37
import 'package:compass_app/utils/result.dart';

compass_app/app/test/data/repositories/continent/continent_repository_remote_test.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/data/repositories/continent/continent_repository.dart';
26
import 'package:compass_app/data/repositories/continent/continent_repository_remote.dart';
37
import 'package:compass_app/utils/result.dart';

compass_app/app/test/data/repositories/destination/destination_repository_local_test.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/data/services/local/local_data_service.dart';
26
import 'package:compass_app/utils/result.dart';
37
import 'package:compass_app/data/repositories/destination/destination_repository_local.dart';

compass_app/app/test/data/repositories/destination/destination_repository_remote_test.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/data/repositories/destination/destination_repository.dart';
26
import 'package:compass_app/data/repositories/destination/destination_repository_remote.dart';
37
import 'package:compass_app/utils/result.dart';

compass_app/app/test/data/services/api/api_client_test.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/data/services/api/api_client.dart';
26
import 'package:compass_app/domain/models/continent/continent.dart';
37
import 'package:compass_app/utils/result.dart';

compass_app/app/test/data/services/api/auth_api_client_test.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/data/services/api/auth_api_client.dart';
26
import 'package:compass_app/data/services/api/model/login_request/login_request.dart';
37
import 'package:compass_app/data/services/api/model/login_response/login_response.dart';

compass_app/app/test/domain/use_cases/booking/booking_create_use_case_test.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/domain/use_cases/booking/booking_create_use_case.dart';
26
import 'package:compass_app/domain/models/itinerary_config/itinerary_config.dart';
37
import 'package:flutter_test/flutter_test.dart';

compass_app/app/test/domain/use_cases/booking/booking_share_use_case_test.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/domain/use_cases/booking/booking_share_use_case.dart';
26
import 'package:compass_app/domain/models/booking/booking.dart';
37
import 'package:flutter_test/flutter_test.dart';

compass_app/app/test/ui/activities/activities_screen_test.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/domain/models/itinerary_config/itinerary_config.dart';
26
import 'package:compass_app/ui/activities/view_models/activities_viewmodel.dart';
37
import 'package:compass_app/ui/activities/widgets/activities_screen.dart';

compass_app/app/test/ui/auth/login_screen_test.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/ui/auth/login/view_models/login_viewmodel.dart';
26
import 'package:compass_app/ui/auth/login/widgets/login_screen.dart';
37
import 'package:flutter_test/flutter_test.dart';

compass_app/app/test/ui/auth/logout_button_test.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/domain/models/itinerary_config/itinerary_config.dart';
26
import 'package:compass_app/ui/auth/logout/view_models/logout_viewmodel.dart';
37
import 'package:compass_app/ui/auth/logout/widgets/logout_button.dart';

compass_app/app/test/ui/booking/booking_screen_test.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/domain/use_cases/booking/booking_create_use_case.dart';
26
import 'package:compass_app/domain/use_cases/booking/booking_share_use_case.dart';
37
import 'package:compass_app/domain/models/itinerary_config/itinerary_config.dart';

compass_app/app/test/ui/home/widgets/home_screen_test.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/data/repositories/auth/auth_repository.dart';
26
import 'package:compass_app/data/repositories/itinerary_config/itinerary_config_repository.dart';
37
import 'package:compass_app/routing/routes.dart';

compass_app/app/test/ui/results/results_screen_test.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/domain/models/itinerary_config/itinerary_config.dart';
26
import 'package:compass_app/ui/results/view_models/results_viewmodel.dart';
37
import 'package:compass_app/ui/results/widgets/results_screen.dart';

compass_app/app/test/ui/results/results_viewmodel_test.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/domain/models/itinerary_config/itinerary_config.dart';
26
import 'package:compass_app/ui/results/view_models/results_viewmodel.dart';
37
import 'package:flutter_test/flutter_test.dart';

compass_app/app/test/ui/search_form/view_models/search_form_viewmodel_test.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:flutter/material.dart';
26
import 'package:flutter_test/flutter_test.dart';
37
import 'package:compass_app/ui/search_form/view_models/search_form_viewmodel.dart';

compass_app/app/test/ui/search_form/widgets/search_form_continent_test.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/ui/search_form/view_models/search_form_viewmodel.dart';
26
import 'package:compass_app/ui/search_form/widgets/search_form_continent.dart';
37
import 'package:flutter_test/flutter_test.dart';

compass_app/app/test/ui/search_form/widgets/search_form_date_test.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/ui/search_form/view_models/search_form_viewmodel.dart';
26
import 'package:compass_app/ui/search_form/widgets/search_form_date.dart';
37
import 'package:flutter_test/flutter_test.dart';

compass_app/app/test/ui/search_form/widgets/search_form_guests_test.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/ui/search_form/view_models/search_form_viewmodel.dart';
26
import 'package:compass_app/ui/search_form/widgets/search_form_guests.dart';
37
import 'package:flutter_test/flutter_test.dart';

compass_app/app/test/ui/search_form/widgets/search_form_screen_test.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/data/repositories/auth/auth_repository.dart';
26
import 'package:compass_app/data/repositories/itinerary_config/itinerary_config_repository.dart';
37
import 'package:compass_app/ui/search_form/view_models/search_form_viewmodel.dart';

compass_app/app/test/ui/search_form/widgets/search_form_submit_test.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/ui/search_form/view_models/search_form_viewmodel.dart';
26
import 'package:compass_app/ui/search_form/widgets/search_form_submit.dart';
37
import 'package:flutter/material.dart';

compass_app/app/test/utils/command_test.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/utils/command.dart';
26
import 'package:compass_app/utils/result.dart';
37
import 'package:flutter_test/flutter_test.dart';

compass_app/app/testing/app.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/ui/core/localization/applocalization.dart';
26
import 'package:compass_app/ui/core/themes/theme.dart';
37
import 'package:flutter/material.dart';

compass_app/app/testing/fakes/repositories/fake_activities_repository.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/data/repositories/activity/activity_repository.dart';
26
import 'package:compass_app/domain/models/activity/activity.dart';
37
import 'package:compass_app/utils/result.dart';

compass_app/app/testing/fakes/repositories/fake_auth_repository.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/data/repositories/auth/auth_repository.dart';
26
import 'package:compass_app/utils/result.dart';
37

compass_app/app/testing/fakes/repositories/fake_booking_repository.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/data/repositories/booking/booking_repository.dart';
26
import 'package:compass_app/domain/models/booking/booking.dart';
37
import 'package:compass_app/domain/models/booking/booking_summary.dart';

compass_app/app/testing/fakes/repositories/fake_continent_repository.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/data/repositories/continent/continent_repository.dart';
26
import 'package:compass_app/domain/models/continent/continent.dart';
37
import 'package:compass_app/utils/result.dart';

compass_app/app/testing/fakes/repositories/fake_destination_repository.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/data/repositories/destination/destination_repository.dart';
26
import 'package:compass_app/domain/models/destination/destination.dart';
37
import 'package:compass_app/utils/result.dart';

compass_app/app/testing/fakes/repositories/fake_itinerary_config_repository.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/data/repositories/itinerary_config/itinerary_config_repository.dart';
26
import 'package:compass_app/domain/models/itinerary_config/itinerary_config.dart';
37
import 'package:compass_app/utils/result.dart';

compass_app/app/testing/fakes/repositories/fake_user_repository.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/data/repositories/user/user_repository.dart';
26
import 'package:compass_app/domain/models/user/user.dart';
37
import 'package:compass_app/utils/result.dart';

compass_app/app/testing/fakes/services/fake_api_client.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/data/services/api/api_client.dart';
26
import 'package:compass_app/data/services/api/model/booking/booking_api_model.dart';
37
import 'package:compass_app/data/services/api/model/user/user_api_model.dart';

compass_app/app/testing/fakes/services/fake_auth_api_client.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/data/services/api/auth_api_client.dart';
26
import 'package:compass_app/data/services/api/model/login_request/login_request.dart';
37
import 'package:compass_app/data/services/api/model/login_response/login_response.dart';

compass_app/app/testing/fakes/services/fake_shared_preferences_service.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/data/services/shared_preferences_service.dart';
26
import 'package:compass_app/utils/result.dart';
37

compass_app/app/testing/mocks.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'dart:convert';
26
import 'dart:io';
37

compass_app/app/testing/models/activity.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/domain/models/activity/activity.dart';
26

37
const kActivity = Activity(

compass_app/app/testing/models/booking.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/data/services/api/model/booking/booking_api_model.dart';
26
import 'package:compass_app/domain/models/booking/booking.dart';
37
import 'package:compass_app/domain/models/booking/booking_summary.dart';

compass_app/app/testing/models/destination.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/domain/models/destination/destination.dart';
26

37
const kDestination1 = Destination(

compass_app/app/testing/models/user.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:compass_app/data/services/api/model/user/user_api_model.dart';
26
import 'package:compass_app/domain/models/user/user.dart';
37

compass_app/server/bin/compass_server.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'dart:io';
26

37
import 'package:compass_server/middleware/auth.dart';

compass_app/server/lib/config/assets.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'dart:convert';
26
import 'dart:io';
37

compass_app/server/lib/config/constants.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import '../model/user/user.dart';
26

37
class Constants {

compass_app/server/lib/middleware/auth.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:shelf/shelf.dart';
26

37
import '../config/constants.dart';

compass_app/server/lib/model/activity/activity.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:freezed_annotation/freezed_annotation.dart';
26

37
part 'activity.freezed.dart';

compass_app/server/lib/model/booking/booking.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:freezed_annotation/freezed_annotation.dart';
26

37
part 'booking.freezed.dart';

compass_app/server/lib/model/continent/continent.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:freezed_annotation/freezed_annotation.dart';
26

37
part 'continent.freezed.dart';

compass_app/server/lib/model/destination/destination.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:freezed_annotation/freezed_annotation.dart';
26

37
part 'destination.freezed.dart';

compass_app/server/lib/model/login_request/login_request.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2024 The Flutter team. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
import 'package:freezed_annotation/freezed_annotation.dart';
26

37
part 'login_request.freezed.dart';

0 commit comments

Comments
 (0)