Skip to content

Commit

Permalink
refactor: rename file
Browse files Browse the repository at this point in the history
  • Loading branch information
jsgalarraga committed Jun 6, 2024
1 parent ef6a664 commit de1be96
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// {@template mascots}
/// Google Mascots enum.
/// {@template mascot}
/// Google Mascot enum.
/// {@endtemplate}
enum Mascot {
/// Flutter Dash mascot.
Expand Down
2 changes: 1 addition & 1 deletion api/packages/game_domain/lib/src/models/models.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export 'board_section.dart';
export 'collided_word.dart';
export 'hint.dart';
export 'initials_input.dart';
export 'mascots.dart';
export 'mascot.dart';
export 'player.dart';
export 'point_converter.dart';
export 'word.dart';
2 changes: 1 addition & 1 deletion api/packages/game_domain/lib/src/models/player.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import 'package:equatable/equatable.dart';
import 'package:game_domain/src/models/mascots.dart';
import 'package:game_domain/src/models/mascot.dart';
import 'package:json_annotation/json_annotation.dart';

part 'player.g.dart';
Expand Down

0 comments on commit de1be96

Please sign in to comment.