2024-01-17 09:44:47 +00:00
|
|
|
// Copyright (c) 2024 mStar
|
|
|
|
//
|
|
|
|
// Licensed under the EUPL, Version 1.2
|
|
|
|
//
|
|
|
|
// You may not use this work except in compliance with the Licence.
|
|
|
|
// You should have received a copy of the Licence along with this work. If not, see:
|
|
|
|
// <https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12>.
|
|
|
|
// See the Licence for the specific language governing permissions and limitations under the Licence.
|
|
|
|
//
|
|
|
|
|
2024-01-19 10:21:31 +00:00
|
|
|
package endpoints
|
2024-01-17 09:44:47 +00:00
|
|
|
|
2024-01-19 10:21:31 +00:00
|
|
|
import (
|
|
|
|
"gitlab.com/mstarongitlab/linstrom/endpoints/api/ap"
|
|
|
|
"gitlab.com/mstarongitlab/linstrom/server"
|
|
|
|
)
|
|
|
|
|
|
|
|
func RegisterAll(s *server.Server) {
|
|
|
|
ap.Register(s)
|
2024-01-17 09:44:47 +00:00
|
|
|
}
|