Forked from franreyes/IndexationAndCalculator.java
Last active
February 4, 2025 17:18
-
-
Save trikitrok/722a14c04fb791df2428f922b6d3144b to your computer and use it in GitHub Desktop.
IndexationAndCalculator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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