Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
hydra-core / plugins / search_path_plugin.py
Size: Mime:
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
from abc import abstractmethod

from hydra.core.config_search_path import ConfigSearchPath

from .plugin import Plugin


class SearchPathPlugin(Plugin):
    @abstractmethod
    def manipulate_search_path(self, search_path: ConfigSearchPath) -> None: ...