blob: 40141860a6e65efac902f9cdebf2d7e3c25e1eea [file] [log] [blame]
package org.apache.airavata.datalake.orchestrator.registry.persistance.repository;
import org.apache.airavata.datalake.orchestrator.registry.persistance.entity.WorkflowEntity;
import org.springframework.data.jpa.repository.JpaRepository;
public interface WorkflowEntityRepository extends JpaRepository<WorkflowEntity, String> {
}