ChatGptAuthService.java 291 B

1234567891011121314
  1. package com.cyksj.service.chatgpt;
  2. import com.cyksj.model.entity.Account;
  3. /**
  4. * @author chan
  5. * @date 2023/6/2 3:44 PM
  6. */
  7. public interface ChatGptAuthService {
  8. String getRefreshToken(Account account) throws Exception;
  9. String getAccessToken(String username) throws Exception;
  10. }