Skip to content

Instantly share code, notes, and snippets.

@Shashwat79802
Last active June 11, 2023 09:15
Show Gist options
  • Save Shashwat79802/1797588ad7bd99eb84737cb1a973bcb0 to your computer and use it in GitHub Desktop.
Save Shashwat79802/1797588ad7bd99eb84737cb1a973bcb0 to your computer and use it in GitHub Desktop.
package com.example.potionsbank.repository;
import org.springframework.data.mongodb.repository.MongoRepository;
import com.example.potionsapi.model.Potion;
import java.util.UUID;
public interface PotionRepository extends MongoRepository < Potion, UUID > { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment