Skip to content

Commit

Permalink
Add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ringsaturn committed Dec 5, 2023
1 parent b59e42c commit 06b5f19
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions role.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ package azuretts
type Role string

const (
RoleGirl Role = "Girl"
RoleBoy Role = "Boy"
RoleYoungAdultFemale Role = "YoungAdultFemale"
RoleYoungAdultMale Role = "YoungAdultMale"
RoleOlderAdultFemale Role = "OlderAdultFemale"
RoleOlderAdultMale Role = "OlderAdultMale"
RoleSeniorFemale Role = "SeniorFemale"
RoleSeniorMale Role = "SeniorMale"
RoleGirl Role = "Girl" // The voice imitates a girl.
RoleBoy Role = "Boy" // The voice imitates a boy.
RoleYoungAdultFemale Role = "YoungAdultFemale" // The voice imitates a young adult female.
RoleYoungAdultMale Role = "YoungAdultMale" // The voice imitates a young adult male.
RoleOlderAdultFemale Role = "OlderAdultFemale" // The voice imitates an older adult female.
RoleOlderAdultMale Role = "OlderAdultMale" // The voice imitates an older adult male.
RoleSeniorFemale Role = "SeniorFemale" // The voice imitates a senior female.
RoleSeniorMale Role = "SeniorMale" // The voice imitates a senior male.
)

func (r Role) String() string {
Expand Down

0 comments on commit 06b5f19

Please sign in to comment.