refactor: eiblog

This commit is contained in:
deepzz0
2021-04-26 15:51:16 +08:00
parent bd69c62254
commit 68e01cdf1f
843 changed files with 3606 additions and 1007377 deletions

9
scripts/swag_init.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/env sh
for file in pkg/core/*; do
if test -d $file; then
cd $file && swag init -g api.go;
cd -;
fi
done