Developer Center website. https://developers.write.as
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
470 B

  1. package platform
  2. type Platform struct {
  3. Name string
  4. URL string
  5. LogoURL string
  6. StyleSheetURL string
  7. CodeAsName string
  8. GitHubName string
  9. MatomoID int
  10. }
  11. var (
  12. WriteAs = Platform{
  13. Name: "Write.as",
  14. URL: "https://write.as",
  15. LogoURL: "https://write.as/img/w-sq.svg",
  16. StyleSheetURL: "https://write.as/css/write.css",
  17. CodeAsName: "writeas",
  18. GitHubName: "writeas",
  19. MatomoID: 7,
  20. }
  21. )