(inbound *Inbound)
| 42 | } |
| 43 | |
| 44 | func inboundFlow(inbound *Inbound) string { |
| 45 | if inbound == nil || inbound.Settings == nil { |
| 46 | return "" |
| 47 | } |
| 48 | flow, _ := inbound.Settings["flow"].(string) |
| 49 | return flow |
| 50 | } |
| 51 | |
| 52 | func accountForAPI(inbound *Inbound, account api.Account) api.Account { |
| 53 | vlessAccount, ok := account.(*api.VlessAccount) |