mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-02 07:38:04 -05:00
10 lines
146 B
Go
10 lines
146 B
Go
|
|
package model
|
||
|
|
|
||
|
|
import "testing"
|
||
|
|
|
||
|
|
func Test_Funcs(t *testing.T) {
|
||
|
|
act := new(ActMatchsObject)
|
||
|
|
s := act.TableName()
|
||
|
|
t.Logf("tablename %s", s)
|
||
|
|
}
|