package com.hepl.tunefortwo.repository;

import org.springframework.data.mongodb.repository.MongoRepository;

import com.hepl.tunefortwo.entity.MixtureMaster;

public interface MixtureMasterRepository extends MongoRepository<MixtureMaster, String> {

}
