@ChopperApi(): adding another path to the class

Hello team,
in the book, in the chopper chapter, you added the following:

abstract class RecipeService extends ChopperService {
  @Get(path: 'search')
  Future<Response<Result<APIRecipeQuery>>> queryRecipes(
      @Query('q') String query, @Query('from') int from, @Query('to') int to);
...
}

If I want to add another path, for example ‘login’, should I create a new abstract Class ? or is there a way to add it to the RecipeService class?