task template file

This commit is contained in:
Lorenzo Venerandi 2025-01-04 23:58:45 +01:00
parent 23525a239d
commit 8a1dde2b12

12
task.go Normal file
View File

@ -0,0 +1,12 @@
package main
import (
)
func exec_task(arg string) string{
response := "" + arg
return response
}