Skip to content

Commit

Permalink
update SignController add ThreadPool
Browse files Browse the repository at this point in the history
  • Loading branch information
cxapython committed Aug 2, 2021
1 parent b1365f1 commit 290adea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
package com.spider.unidbgserver.controller;
import com.alibaba.fastjson.JSON;
import com.crack.DouyinSign;
import com.github.unidbg.worker.Worker;
import com.github.unidbg.worker.WorkerPool;
import com.github.unidbg.worker.WorkerPoolFactory;
import com.worker.DYWorker;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;

import java.io.IOException;
import java.util.Map;
import java.util.concurrent.*;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package com.spider.unidbgserver.controller;
package com.worker;

import com.crack.DouyinSign;
import com.github.unidbg.worker.Worker;

import java.io.IOException;
import java.util.Map;

class DYWorker implements Worker {
public class DYWorker implements Worker {
private final DouyinSign douyinSign;

public DYWorker() {
Expand Down

0 comments on commit 290adea

Please sign in to comment.