mirror of
https://github.com/FlipsideCrypto/fsc-utils.git
synced 2026-02-06 10:56:49 +00:00
17 lines
1.1 KiB
MySQL
17 lines
1.1 KiB
MySQL
|
|
{% set name %}
|
||
|
|
{{- udf_configs() -}}
|
||
|
|
{% endset %}
|
||
|
|
{% set udfs = fromyaml(name) %}
|
||
|
|
|
||
|
|
{{- create_or_drop_function_from_config(udfs["streamline.introspect"], drop_=True) -}}
|
||
|
|
{{- create_or_drop_function_from_config(udfs["streamline.whoami"], drop_=True) -}}
|
||
|
|
{{- create_or_drop_function_from_config(udfs["streamline.udf_register_secret"], drop_=True) -}}
|
||
|
|
{{- create_or_drop_function_from_config(udfs["beta.udf_register_secret"], drop_=True) -}}
|
||
|
|
{{- create_or_drop_function_from_config(udfs["streamline.udf_api"], drop_=True) -}}
|
||
|
|
{{- create_or_drop_function_from_config(udfs["beta.udf_api"], drop_=True) -}}
|
||
|
|
{{- create_or_drop_function_from_config(udfs["streamline.introspect"], drop_=False) -}}
|
||
|
|
{{- create_or_drop_function_from_config(udfs["streamline.whoami"], drop_=False) -}}
|
||
|
|
{{- create_or_drop_function_from_config(udfs["streamline.udf_register_secret"], drop_=False) -}}
|
||
|
|
{{- create_or_drop_function_from_config(udfs["beta.udf_register_secret"], drop_=False) -}}
|
||
|
|
{{- create_or_drop_function_from_config(udfs["streamline.udf_api"], drop_=False) -}}
|
||
|
|
{{- create_or_drop_function_from_config(udfs["beta.udf_api"], drop_=False) -}}
|