blob: b0375c0a8ed51cc97066048602e03b5df823d6f3 [file] [log] [blame]
// Copyright (c) 2017, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package com.android.tools.r8.shaking;
import java.io.IOException;
import java.nio.file.Path;
public interface ProguardConfigurationSource {
String get() throws IOException;
Path getBaseDirectory();
String getName();
}