github.com/choria-io/go-choria@v0.28.1-0.20240416190746-b3bf9c7d5a45/providers/data/ddl/funcmap.go (about)

     1  // Copyright (c) 2021-2022, R.I. Pienaar and the Choria Project contributors
     2  //
     3  // SPDX-License-Identifier: Apache-2.0
     4  
     5  package ddl
     6  
     7  type FuncMapEntry struct {
     8  	F    any
     9  	Name string
    10  	DDL  *DDL
    11  }
    12  
    13  type FuncMap map[string]FuncMapEntry