package io.delphi.qa.auto.awsmfrw.models.api.perf;

import java.util.function.Supplier;

public enum EnDelphiPerfInfluxEndpoints implements Supplier<String> {

  WRITE("/write"),
  ;

  private final String path;

  EnDelphiPerfInfluxEndpoints(String xPath) {
    this.path = xPath;
  }

  @Override public String get() {
    return path;
  }
}
