code refactor

This commit is contained in:
MaysWind
2024-08-16 23:56:23 +08:00
parent e532f372b5
commit 560edf9fbf
27 changed files with 437 additions and 245 deletions
+10
View File
@@ -0,0 +1,10 @@
package core
// UserAvatarProviderType represents type of the user avatar provider
type UserAvatarProviderType string
// User avatar provider types
const (
USER_AVATAR_PROVIDER_INTERNAL UserAvatarProviderType = "internal"
USER_AVATAR_PROVIDER_GRAVATAR UserAvatarProviderType = "gravatar"
)