package com.sonymusic.hierdispatcher.repository;

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

import com.sonymusic.hierdispatcher.model.DraLambdaAuditLog;

@Repository
public interface DraLambdaAuditLogRepository
        extends MongoRepository<DraLambdaAuditLog, String> {
}
