Define path prefixes in a package that doesn't create import cycles

This commit is contained in:
Neil Alexander 2020-05-22 14:18:41 +01:00
parent 06d5f1e6dc
commit 3c3e014901
4 changed files with 23 additions and 9 deletions

View file

@ -0,0 +1,6 @@
package httpapis
const (
PublicPathPrefix = "/_matrix/"
InternalPathPrefix = "/api/"
)