ChatApi.java 227 Bytes edit raw blame history 1 2 3 4 5 6 7 8 9 10 package com.hjx.parent.api; import retrofit2.http.Header; import retrofit2.http.POST; import retrofit2.http.Url; public interface ChatApi { @POST void aiChat(@Url String url, @Header("Authorization") String token); }