mirror of
https://github.com/rwxrob/dot
synced 2024-11-14 18:12:56 +00:00
22 lines
370 B
Bash
Executable File
22 lines
370 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
_trim() {
|
|
local it="${1#"${1%%[![:space:]]*}"}"
|
|
it="${it%%//*}"
|
|
echo -e "${it%"${it##*[![:space:]]}"}"
|
|
}
|
|
|
|
|
|
interface="$1"
|
|
receiver="$2"
|
|
|
|
while IFS= read -r sig; do
|
|
sig=$(_trim "$sig")
|
|
name=${sig%%(*}
|
|
echo "//$name implements $interface interface."
|
|
# TODO get fancy with return type detection
|
|
echo "func (s $receiver) $sig {}"
|
|
done
|
|
|
|
|