loading up the forgejo repo on tangled to test page performance
1// Copyright 2020 The Gitea Authors. All rights reserved.
2// SPDX-License-Identifier: MIT
3
4package middleware
5
6import (
7 "net/http"
8 "strings"
9)
10
11// IsAPIPath returns true if the specified URL is an API path
12func IsAPIPath(req *http.Request) bool {
13 return strings.HasPrefix(req.URL.Path, "/api/")
14}