Skip to content

Instantly share code, notes, and snippets.

@trikitrok
Forked from franreyes/IndexationAndCalculator.java
Last active February 4, 2025 17:18
Show Gist options
  • Save trikitrok/722a14c04fb791df2428f922b6d3144b to your computer and use it in GitHub Desktop.
Save trikitrok/722a14c04fb791df2428f922b6d3144b to your computer and use it in GitHub Desktop.
IndexationAndCalculator.java
public interface IndexationCalculator {
Page update(Page current, Search search);
}
public interface CanonicalCalculator {
Page update(Page current, Search search);
}
public class Page {
public bool isIndexed;
public String canonical;
public String url;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment