/* * Micro Service * Package: gitlab.hexacode.org/go-libs/microservice * Maintainer: Azzis Arswendo * * Copyright (C) 2023 Hexacode Teknologi Indonesia * All Rights Reserved */ package config import ( "net/http" "gitlab.hexacode.org/go-libs/hctypes" ) func DefaultCallbackAPIFunction(*ConfigContext) (int, hctypes.Dict, *ReturnHTTPError) { return http.StatusOK, hctypes.Dict{}, nil } func DefaultCallbackTemplateFunction(*ConfigTemplateContext) hctypes.Dict { return nil }