doc(yulang_add):add doc

This commit is contained in:
yu_lang 2021-08-28 20:05:19 +08:00
parent 78ee204877
commit c321d6865d
3 changed files with 5 additions and 20 deletions

5
doc/前端文档.md Normal file
View File

@ -0,0 +1,5 @@
### 前端技术选择
- react框架
- 组件antd或React-bootstrap或其他css组件
- 图表库BizCharts
- axios

View File

@ -1,6 +0,0 @@
package lrutest
func Test(a int) bool{
return a==1
}

View File

@ -1,14 +0,0 @@
package lrutest
import (
"github.com/stretchr/testify/require"
"testing"
)
func TestTest(t *testing.T) {
ts , err := Test(2)
require.NoError(t, err)
require.Regexp(t, '\d', ts)
}