Moving server files to ./server

This commit is contained in:
Corteza Monorepo Migrator
2022-11-14 09:26:39 +01:00
parent 204738f7c9
commit 683c7c56e2
5750 changed files with 0 additions and 26430 deletions
+13
View File
@@ -0,0 +1,13 @@
package cast2
import "github.com/spf13/cast"
func String(in any, out *string) error {
aux, err := cast.ToStringE(in)
if err != nil {
return err
}
*out = aux
return nil
}