Skip to content

Commit

Permalink
created DatasourceDao interface
Browse files Browse the repository at this point in the history
  • Loading branch information
kenricky-bitquill committed Nov 8, 2024
1 parent 30fd2d2 commit 2372caa
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package org.opensearch.sql.common.geospatial;

import javafx.util.Pair;

import java.util.stream.Stream;

public interface DatasourceDao extends AutoCloseable {
public Stream<Pair<String, GeoIpCache>> getGeoIps(String datasource);
}

0 comments on commit 2372caa

Please sign in to comment.