-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a03ccc9
commit fa2fa44
Showing
3 changed files
with
39 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
module HStream.Kafka.Client.Core where | ||
|
||
import Control.Exception | ||
import Control.Monad | ||
import qualified Data.ByteString as BS | ||
import Data.Int | ||
import qualified Data.Vector as V | ||
import qualified Kafka.Protocol.Encoding as K | ||
import qualified Kafka.Protocol.Message as K | ||
import qualified Network.Socket as NW | ||
import qualified Network.Socket.ByteString as NW | ||
import Options.Applicative as AP | ||
|
||
import HStream.Kafka.Client.CliParser | ||
|
||
handleCmdNodes :: Options -> IO () | ||
handleCmdNodes = undefined | ||
|
||
handleCmdTopics :: Options -> IO () | ||
handleCmdTopics = undefined | ||
|
||
handleCmdDescribeTopic :: Options -> String -> IO () | ||
handleCmdDescribeTopic = undefined | ||
|
||
handleCmdGroups :: Options -> IO () | ||
handleCmdGroups = undefined | ||
|
||
handleCmdDescribeGroup :: Options -> String -> IO () | ||
handleCmdDescribeGroup = undefined |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters