syntax = "v1"

info (
	title: // TODO: add title
	desc: // TODO: add description
	author: ""
	email: ""
)

import "basic.api"

service info {
	@handler InfoHandler
	post /api/info/user(UserInfoRequest) returns (response);
}

type (
	UserInfoRequest {
		Module []string `json:"module"`
	}
)